Skip to content

Instantly share code, notes, and snippets.

@topnotch48
Last active July 22, 2018 07:13
Show Gist options
  • Save topnotch48/21d4b1be142ebe46e80a5b0f2c6aeb75 to your computer and use it in GitHub Desktop.
Save topnotch48/21d4b1be142ebe46e80a5b0f2c6aeb75 to your computer and use it in GitHub Desktop.
describe('#productions Production wizard bates settings', () => {
configureTestSuite();
beforeAll(done => (async () => {
TestBed.configureTestingModule({
imports: modules,
providers: [defaultGlobalProvidersForTests]
});
TestBed.overrideModule(ProductionsModule, overrides);
await TestBed.compileComponents();
})().then(done).catch(done.fail));
describe(' number component ', () => {
let ctx: TestCtx<BatesNumberHostComponent>;
let page: BatesNumberPage;
beforeEach(async(async () => {
ctx = await TestBedHelper.createContext(BatesNumberHostComponent);
page = new BatesNumberPage(ctx.fixture);
}));
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment