Files: 7d964f2bef52e9913aa6872a034f7e967653274b / feature / steps.js
268 bytesRaw
1 | const test = require('cuke-tap') |
2 | const jsdom = require('jsdom') |
3 | |
4 | test.given(/^I am on the landing page$/, (t, world, params) => { |
5 | t.plan(1) |
6 | jsdom.env('http://localhost:9966', (err, window) => { |
7 | t.error(err) |
8 | world.window = window |
9 | t.pass('done') |
10 | }) |
11 | }) |
12 |
Built with git-ssb-web