/** * @license * Copyright Mauricio Gemelli Vigolo and contributors. * * Use of this source code is governed by a MIT-style license that can be * found in the LICENSE file at https://github.com/mauriciovigolo/keycloak-angular/LICENSE */ import { CoreModule } from './core.module'; describe('CoreModule', () => { let coreModule: CoreModule; beforeEach(() => { coreModule = new CoreModule(); }); it('should create an instance', () => { expect(coreModule).toBeTruthy(); }); });