mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 22:03:03 -05:00
fix(test): move all test apps
This commit is contained in:
13
apps/testing/input-output/src/app/counter.component.cy.ts
Normal file
13
apps/testing/input-output/src/app/counter.component.cy.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user