public/dom/call-it_test.js

20 lines
405 B
JavaScript
Raw Normal View History

2021-03-02 17:44:30 +00:00
export const tests = []
tests.push(async ({ page, eq }) => {
2021-03-02 22:08:18 +00:00
// check the face
return eq.$('section#face', { textContent: '' })
})
tests.push(async ({ page, eq }) => {
// check the upper-body
return eq.$('section#upper-body', { textContent: '' })
2021-03-02 17:44:30 +00:00
})
2021-03-02 22:08:18 +00:00
tests.push(async ({ page, eq }) => {
// check the lower-body, my favorite part
return eq.$('section#lower-body', { textContent: '' })
})