Skip to content

Commit

Permalink
fix(schematics): fixed the schematics/action spec template
Browse files Browse the repository at this point in the history
  • Loading branch information
agugan committed Aug 27, 2019
1 parent 214e7dc commit cdded0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { <%= classify(name) %> } from './<%= dasherize(name) %>.actions';
import * as from<%= classify(name) %> from './<%= dasherize(name) %>.actions';

describe('<%= classify(name) %>', () => {
it('should create an instance', () => {
expect(new <%= classify(name) %>()).toBeTruthy();
expect(new from<%= classify(name)%>.Load<%= classify(name) %>s()).toBeTruthy();
});
});

0 comments on commit cdded0d

Please sign in to comment.