Last active
July 22, 2018 07:13
-
-
Save topnotch48/21d4b1be142ebe46e80a5b0f2c6aeb75 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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