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