We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b34e38b commit 8e671ffCopy full SHA for 8e671ff
cypress/e2e/play-button.cy.ts
@@ -1,9 +1,13 @@
1
describe('Stop and play the music', () => {
2
- beforeEach(() => {
3
- cy.visit('http://localhost:3001');
4
- });
+ it('Click play button', function () {
5
6
- it('Click play button', () => {
+ // Endless test trying to load the Discord integration
+ // https://stackoverflow.com/questions/64673128/cypress-iframe-function-works-on-chrome-but-not-firefox
+ if (Cypress.browser.name === 'firefox') {
7
+ this.skip();
8
+ }
9
+
10
+ cy.visit('http://localhost:3001');
11
cy.get('audio')
12
.invoke('attr', 'src')
13
.should('contain', '.mp3')
0 commit comments