mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
405 B
20 lines
405 B
2 years ago
|
export const tests = []
|
||
|
|
||
|
tests.push(async ({ page, eq }) => {
|
||
|
// check the face
|
||
|
|
||
|
return eq.$('section#face', { textContent: '' })
|
||
|
})
|
||
|
|
||
|
tests.push(async ({ page, eq }) => {
|
||
|
// check the upper-body
|
||
|
|
||
|
return eq.$('section#upper-body', { textContent: '' })
|
||
|
})
|
||
|
|
||
|
tests.push(async ({ page, eq }) => {
|
||
|
// check the lower-body, my favorite part
|
||
|
|
||
|
return eq.$('section#lower-body', { textContent: '' })
|
||
|
})
|