noredink-ui/script/percy-tests.js

11 lines
351 B
JavaScript
Raw Normal View History

2019-11-15 14:16:10 +03:00
const PercyScript = require('@percy/script')
PercyScript.run(async (page, percySnapshot) => {
2019-11-15 16:37:27 +03:00
await page.goto('http://localhost:8000/')
2019-11-15 14:16:10 +03:00
// ensure the page has loaded before capturing a snapshot
2019-11-15 17:00:22 +03:00
await page.waitFor('.module-example__Nri-Ui-Alert-V4')
2019-11-15 18:59:49 +03:00
await page.waitFor('#categories')
2019-11-15 16:58:00 +03:00
2019-11-15 17:37:50 +03:00
await percySnapshot('NoRedInk-UI', {widths: [1280]})
2019-11-15 14:16:10 +03:00
})