move startupService to common

This commit is contained in:
DEV Sam Hayes
2025-02-04 20:13:45 +01:00
parent a652718bc7
commit b21701f677
8 changed files with 37 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { StartupService } from './startup.service';
describe('StartupService', () => {
let service: StartupService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(StartupService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});