Files
marketplaces/src/app/app.spec.ts

19 lines
487 B
TypeScript
Raw Normal View History

2026-01-18 18:57:06 +04:00
import { TestBed } from '@angular/core/testing';
import { App } from './app';
import { provideRouter } from '@angular/router';
2026-01-18 18:57:06 +04:00
describe('App', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [App],
providers: [provideRouter([])]
2026-01-18 18:57:06 +04:00
}).compileComponents();
});
it('should create the app', () => {
const fixture = TestBed.createComponent(App);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
});