-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from filiphric/9-error-reading-setattribute-in…
…-cypress-v1300 9 error reading setattribute in cypress v1300
- Loading branch information
Showing
10 changed files
with
2,376 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
node_modules/ | ||
dist/ | ||
dist/ | ||
cypress/videos | ||
cypress/screenshots |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
import { defineConfig } from "cypress"; | ||
import { plugin as replayPlugin } from "@replayio/cypress"; | ||
|
||
export default defineConfig({ | ||
fixturesFolder: false, | ||
e2e: { | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function | ||
setupNodeEvents(on, config) { | ||
// implement node event listeners here | ||
}, | ||
env: { | ||
hideXhr: true | ||
} | ||
replayPlugin(on, config, { | ||
upload: true, | ||
apiKey: process.env.REPLAY_API_KEY, | ||
}); | ||
return config; | ||
}, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
it('test', () => { | ||
|
||
expect(true).to.be.true | ||
cy.visit('/server/index.html') | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
import '../../dist/index' | ||
import '@replayio/cypress/support'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.