mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 13:53:03 -05:00
14 lines
356 B
TypeScript
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);
|
|
});
|
|
});
|
|
});
|