Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
417 bytes
|
Line | |
---|
1 | import { TestBed } from '@angular/core/testing';
|
---|
2 |
|
---|
3 | import { <%= classify(name) %>Guard } from './<%= dasherize(name) %>.guard';
|
---|
4 |
|
---|
5 | describe('<%= classify(name) %>Guard', () => {
|
---|
6 | let guard: <%= classify(name) %>Guard;
|
---|
7 |
|
---|
8 | beforeEach(() => {
|
---|
9 | TestBed.configureTestingModule({});
|
---|
10 | guard = TestBed.inject(<%= classify(name) %>Guard);
|
---|
11 | });
|
---|
12 |
|
---|
13 | it('should be created', () => {
|
---|
14 | expect(guard).toBeTruthy();
|
---|
15 | });
|
---|
16 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.