git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 7d964f2bef52e9913aa6872a034f7e967653274b

Files: 7d964f2bef52e9913aa6872a034f7e967653274b / feature / steps.js

268 bytesRaw
1const test = require('cuke-tap')
2const jsdom = require('jsdom')
3
4test.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