Cypress is an end-to-end testing framework.
Create a file in $YOUR_PROJECT_ROOT/cypress/integration/example_spec.js
with the following content:
describe('Test One', function() {
it('Runs correctly', function() {
expect(true).to.equal(true);
});
});
Start Cypress by running:
node_modules/.bin/cypress open
example_spec.js
should be visible in Cypress under "Integration tests". Click on it to launch it in the Cypress Test Runner.
Does Cypress integrate with BrowserStack?