Files
angular-challenges/apps/testing/input-output/src/app/counter.component.cy.ts
2023-10-18 14:08:57 +02:00

14 lines
356 B
TypeScript

import { CounterComponent } from './counter.component';
describe(CounterComponent.name, () => {
describe('Given an initualValue of 10', () => {
it('listen to output using createOutputSpy', () => {
cy.mount(CounterComponent);
});
it('listen to output using autoSpyOutputs', () => {
cy.mount(CounterComponent);
});
});
});