diff options
author | 2022-03-31 00:33:29 +0200 | |
---|---|---|
committer | 2022-03-31 00:33:29 +0200 | |
commit | 64c92a661ccf1fb6a6482c5504db97dbcb003977 (patch) | |
tree | d6c11f07c766ffe72c2e54e802d4f86c33517c2a /cypress/integration/example.spec.ts | |
download | it-tools-64c92a661ccf1fb6a6482c5504db97dbcb003977.tar.gz it-tools-64c92a661ccf1fb6a6482c5504db97dbcb003977.tar.zst it-tools-64c92a661ccf1fb6a6482c5504db97dbcb003977.zip |
chore: first commit
Diffstat (limited to 'cypress/integration/example.spec.ts')
-rw-r--r-- | cypress/integration/example.spec.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cypress/integration/example.spec.ts b/cypress/integration/example.spec.ts new file mode 100644 index 0000000..7a8c909 --- /dev/null +++ b/cypress/integration/example.spec.ts @@ -0,0 +1,8 @@ +// https://docs.cypress.io/api/introduction/api.html + +describe('My First Test', () => { + it('visits the app root url', () => { + cy.visit('/') + cy.contains('h1', 'You did it!') + }) +}) |