Files
brewman/overlord/src/app/closing-stock/closing-stock.component.spec.ts
T
tanshu 4571b31fc0 Chore: Check for deprecations using eslint plugin
Chore: environment file replacement stopped.
Chore: All components are now standalone and removed all modules
Chore: App routing is now in app.routes and similarly for all submodules
Chore: Http interceptors are now functional and split refresh interceptor into a separate one.
2024-05-31 22:54:41 +05:30

23 lines
631 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ClosingStockComponent } from './closing-stock.component';
describe('ClosingStockComponent', () => {
let component: ClosingStockComponent;
let fixture: ComponentFixture<ClosingStockComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ClosingStockComponent],
}).compileComponents();
fixture = TestBed.createComponent(ClosingStockComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});