Browse Source

Separate tests in skeleton test

pull/748/head
Marie Malarme 3 years ago committed by Clément
parent
commit
260b964cf4
  1. 2
      dom/skeleton_test.js

2
dom/skeleton_test.js

@ -8,7 +8,9 @@ tests.push(async ({ page, eq }) => {
)
const isValidTitle = title !== undefined && title.length !== 0
eq(isValidTitle, true)
})
tests.push(async ({ page, eq }) => {
// check the 3 sections have been created with the correct text
const elements = await page.$$eval('body', (nodes) =>
[...nodes[0].children].map((node) => ({

Loading…
Cancel
Save