test: don't require 'q' until the test that needs it (#20958)
this stops a failure to require from blocking all tests from running
This commit is contained in:
parent
56d6c1657a
commit
6e5ac301ce
1 changed files with 1 additions and 1 deletions
|
@ -46,9 +46,9 @@ describe('modules support', () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('q', () => {
|
describe('q', () => {
|
||||||
const Q = require('q')
|
|
||||||
describe('Q.when', () => {
|
describe('Q.when', () => {
|
||||||
it('emits the fullfil callback', (done) => {
|
it('emits the fullfil callback', (done) => {
|
||||||
|
const Q = require('q')
|
||||||
Q(true).then((val: boolean) => {
|
Q(true).then((val: boolean) => {
|
||||||
expect(val).to.be.true()
|
expect(val).to.be.true()
|
||||||
done()
|
done()
|
||||||
|
|
Loading…
Reference in a new issue