git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 947495d7b525ed764c3f2d2d9ff82bd7392011be

Files: 947495d7b525ed764c3f2d2d9ff82bd7392011be / 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