Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
ee9e2a2eb6d1ea6d2d3b36285de2a3efbe4e3fe8
/
.
/
examples
/
cypress
/
hello.spec.ts
blob: 95b03ff39aeb282d2841475e810a3cafe822d829 [
file
]
describe
(
'hello'
,
()
=>
{
it
(
'should find hello'
,
()
=>
{
cy
.
visit
(
'http://localhost:3000'
);
cy
.
contains
(
'hello'
);
});
});