Last active
September 11, 2017 06:50
-
-
Save giltayar/94d796650ab58abd988614a7efd27cf3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Eyes} = require('eyes.selenium') | |
let eyes | |
before(async () => { | |
eyes = new Eyes() | |
eyes.setApiKey(process.env.APPLITOOLS_APIKEY) | |
await eyes.open(driver, 'Calculator App', 'Tests', {width: 800, height: 600}) | |
}) | |
after(async () => await eyes.close()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment