Here's my test in ./tests/homepage.test.js
context('Signup flow', () => {
it('The happy path should work', () => {
cy.visit('https://grazily.com/register');
const random = Math.floor(Math.random() * 100000);
cy.get('[data-testid=username]').type(`Tester${random}`);
cy.get('[data-testid=email]').type(`user+${random}@realworld.io`);
cy.get('[data-testid=password]').type('mysupersecretpassword');
cy.get('[data-testid=signup-button]').click();
cy.get('[data-testid=no-articles-here]', { timeout: 10000 }).should('be.visible');
Here's the file ./cypress/support/commands.js
import '@testing-library/cypress/add-commands';
tsconfig.json:
"compilerOptions": {
"types": ["cypress", "@testing-library/cypress"],
...
}
I didn't make any other changes...and get this error when running npm t
I think t
uses jest ./src
so I'm not sure how to invoke cypress in ./tests/*test.js
folder
Update:
Your pluginsFile is invalid: /home/ettinger/src/oblivion/Catalyze-frontend/cypress/plugins/index.js
Getting this error now with cypress run test
Getting this error now with cypress run test
If you are trying to run a specific test, add
--spec