Tweak error message

This commit is contained in:
Kevin Sawicki 2016-06-09 17:00:13 -07:00
parent 55a4e2589b
commit 110f1f8b75

View file

@ -54,7 +54,7 @@
if (isCi) {
mocha.grep = function () {
try {
throw new Error('it.only or describe.only was called')
throw new Error('A spec contains a call to it.only or describe.only and should be reverted.')
} catch (error) {
console.error(error.stack || error)
}