Skip to content

Commit

Permalink
9422-email-domains-interstitial-oauth
Browse files Browse the repository at this point in the history
  • Loading branch information
leomendoza123 committed Nov 4, 2024
1 parent 471983e commit 26a4ea5
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions src/app/cdk/interstitials/interstitials.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
import { TestBed } from '@angular/core/testing';
import { TestBed } from '@angular/core/testing'

import { InterstitialsService } from './interstitials.service';
import { InterstitialsService } from './interstitials.service'
import { UserService } from 'src/app/core'

describe('InterstitialsService', () => {
let service: InterstitialsService;
let service: InterstitialsService

beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(InterstitialsService);
});
TestBed.configureTestingModule({
providers: [
{
provide: UserService,
useValue: {},
},
],
})
service = TestBed.inject(InterstitialsService)
})

it('should be created', () => {
expect(service).toBeTruthy();
});
});
expect(service).toBeTruthy()
})
})

0 comments on commit 26a4ea5

Please sign in to comment.