Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
5ad9753fda3cb464b3d555bc2e56ad1d30647328
/
.
/
examples
/
cypress
/
world.spec.js
blob: 3564f90b59d3257e1165e7376afae55d2182be77 [
file
]
describe
(
'world'
,
()
=>
{
it
(
'should find world'
,
()
=>
{
cy
.
visit
(
'http://localhost:3000'
);
cy
.
contains
(
'world'
);
});
});