import { lastValueFrom } from 'rxjs';
import { ChatroomService } from './chatroom.service';
import { Chatroom } from './chatroom.model';
-import { APP_PROPS } from '..';
+import { APP_PROPS } from '../app.tokens';
describe('Pact between the ChatroomService and the backend', () => {
+++ /dev/null
-export * from './app.config'
-export * from './app.component'
-export * from './app.tokens'
import { bootstrapApplication } from '@angular/platform-browser';
-import { AppComponent, appConfig } from './app';
+import { AppComponent } from './app/app.component';
+import { appConfig } from './app/app.config';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));