Skip to content

Commit

Permalink
fix: remove extra parentheses with spec test (#490)
Browse files Browse the repository at this point in the history
resolves #489
  • Loading branch information
liamdebeasi authored May 22, 2023
1 parent 6f5cc26 commit 87b1018
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ describe('<%= classify(name) %>Page', () => {
let component: <%= classify(name) %>Page;
let fixture: ComponentFixture<<%= classify(name) %>Page>;

beforeEach(async(() => {
beforeEach(async () => {
fixture = TestBed.createComponent(<%= classify(name) %>Page);
component = fixture.componentInstance;
fixture.detectChanges();
}));
});

it('should create', () => {
expect(component).toBeTruthy();
Expand Down

0 comments on commit 87b1018

Please sign in to comment.