76ce18cfd8
- core modules contains core services - shared module contains "dumb" components (directives, models) - used by nearly all modules - site, it's children and projector are now feature modules - full lazy loading with independent routing - routing for children (extremely helpful for plugins (later))
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { LoginModule } from './login.module';
|
|
|
|
describe('LoginModule', () => {
|
|
let loginModule: LoginModule;
|
|
|
|
beforeEach(() => {
|
|
loginModule = new LoginModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(loginModule).toBeTruthy();
|
|
});
|
|
});
|