17 lines
417 B
Plaintext
Executable File
17 lines
417 B
Plaintext
Executable File
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { <%= classify(name) %>Guard } from './<%= dasherize(name) %>.guard';
|
|
|
|
describe('<%= classify(name) %>Guard', () => {
|
|
let guard: <%= classify(name) %>Guard;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
guard = TestBed.inject(<%= classify(name) %>Guard);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(guard).toBeTruthy();
|
|
});
|
|
});
|