fac22 / week2-ABES

PostgreSQL Database project
1 stars 0 forks source link

More cypress testing required #33

Open cemalokten opened 3 years ago

cemalokten commented 3 years ago

Have you thought about more testing?

Good job on getting started, appreciate you had no time.

it('can run a test', () => {
  assert.equal(1, 1);
});

it('can display our website', () => {
  cy.visit('/');
  cy.get('h1');
});