Skip to content

Instantly share code, notes, and snippets.

@krishna-acondy
Last active May 23, 2019 22:00
Show Gist options
  • Save krishna-acondy/8c46e32d44720e36dabb0dbfa8b59f1d to your computer and use it in GitHub Desktop.
Save krishna-acondy/8c46e32d44720e36dabb0dbfa8b59f1d to your computer and use it in GitHub Desktop.
Angular Unit Testing - TodosComponent Simplest
describe('TodosComponent', () => {
let testHarness: TestHarness<TodosComponent>;
beforeEach(async () => {
await setupTestModule(TodosTestModule);
testHarness = createTestHarness(TodosComponent);
});
it('should create', () => {
expect(testHarness.hasComponentCreated).toBeTruthy();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment