blob: a5dac4f97e8e808b90800265744950fc0dd04933 [file] [log] [blame]
'use strict'
/**
* @fileoverview Disallow the use of disabled tests
* @author Tom Vincent
*/
var prohibit = require('../helpers/prohibit')
module.exports = function (context) {
var prohibiteds = [
'xdescribe',
'xit'
]
return prohibit(prohibiteds, context)
}