responsive_image_grid/tests/e2e/specs/image_grid.js

16 lines
399 B
JavaScript
Raw Normal View History

2020-06-26 00:23:11 +02:00
// For authoring Nightwatch tests, see
// https://nightwatchjs.org/guide
module.exports = {
beforeEach: (browser) => browser.init(),
'Image grid is present': (browser) => {
browser
.waitForElementVisible('#app')
.assert.elementCount('.image-grid-container', 1)
.assert.elementCount('figure img', 10)
.assert.elementCount('figure figcaption', 10)
.end()
}
}