helloworld.spec.js 365 B

1234567891011
  1. // helloworld.spec.js created with Cypress
  2. //
  3. // Start writing your Cypress tests below!
  4. // If you're unfamiliar with how Cypress works,
  5. // check out the link below and learn how to write your first test:
  6. // https://on.cypress.io/writing-first-test
  7. describe('hello world', () => {
  8. it('Does not do much!', () => {
  9. expect(true).to.equal(true);
  10. });
  11. });