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