Skip to content

Commit af487ba

Browse files
committed
Add error-level warning from original impl
1 parent 16b3beb commit af487ba

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

src/log/ensure-promise.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
import config from '../config'
22
import log from '../log'
33

4+
const MESSAGES = {
5+
warn: `\
6+
no promise constructor is set, so this \`thenResolve\` or \`thenReject\` stubbing
7+
will fail if it's satisfied by an invocation on the test double. You can tell
8+
testdouble.js which promise constructor to use with \`td.config\`, like so:`,
9+
error: `\
10+
no promise constructor is set (perhaps this runtime lacks a native Promise
11+
function?), which means this stubbing can't return a promise to your
12+
subject under test, resulting in this error. To resolve the issue, set
13+
a promise constructor with \`td.config\`, like this:`
14+
}
15+
416
export default function ensurePromise (level) {
517
if (config().promiseConstructor == null) {
618
log[level]('td.when', `\
7-
no promise constructor is set, so this \`thenResolve\` or \`thenReject\` stubbing
8-
will fail if it's satisfied by an invocation on the test double. You can tell
9-
testdouble.js which promise constructor to use with \`td.config\`, like so:
19+
${MESSAGES[level]}
1020
1121
td.config({
1222
promiseConstructor: require('bluebird')

test/unit/log/ensure-promise.test.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66

77
subject = require('../../../src/log/ensure-promise').default
88
},
9-
'config has no promise set': () => {
9+
'config has no promise set (warn)': () => {
1010
td.when(config()).thenReturn({promiseConstructor: null})
1111

1212
subject('warn')
@@ -36,9 +36,10 @@ testdouble.js which promise constructor to use with \`td.config\`, like so:
3636
subject('error')
3737

3838
td.verify(log.error('td.when', `\
39-
no promise constructor is set, so this \`thenResolve\` or \`thenReject\` stubbing
40-
will fail if it's satisfied by an invocation on the test double. You can tell
41-
testdouble.js which promise constructor to use with \`td.config\`, like so:
39+
no promise constructor is set (perhaps this runtime lacks a native Promise
40+
function?), which means this stubbing can't return a promise to your
41+
subject under test, resulting in this error. To resolve the issue, set
42+
a promise constructor with \`td.config\`, like this:
4243
4344
td.config({
4445
promiseConstructor: require('bluebird')

test/unit/share/create-promise.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ module.exports = {
5454

5555
td.verify(rejecter('pants'))
5656
assert.equal(td.explain(resolver).callCount, 0)
57-
},
57+
}
5858
}
5959
}

0 commit comments

Comments
 (0)