Lines Matching refs:Mocha

1423 exports = module.exports = Mocha;
1480 function Mocha(options) { class
1519 Mocha.prototype.bail = function(bail){ class
1532 Mocha.prototype.addFile = function(file){
1544 Mocha.prototype.reporter = function(reporter, reporterOptions){
1570 Mocha.prototype.ui = function(name){
1585 Mocha.prototype.loadFiles = function(fn){
1604 Mocha.prototype._growl = function(runner, reporter) {
1630 Mocha.prototype.grep = function(re){
1644 Mocha.prototype.invert = function(){
1657 Mocha.prototype.ignoreLeaks = function(ignore){
1669 Mocha.prototype.checkLeaks = function(){
1681 Mocha.prototype.fullTrace = function() {
1693 Mocha.prototype.growl = function(){
1706 Mocha.prototype.globals = function(globals){
1719 Mocha.prototype.useColors = function(colors){
1734 Mocha.prototype.useInlineDiffs = function(inlineDiffs) {
1749 Mocha.prototype.timeout = function(timeout){
1762 Mocha.prototype.slow = function(slow){
1775 Mocha.prototype.enableTimeouts = function(enabled) {
1789 Mocha.prototype.asyncOnly = function(){
1799 Mocha.prototype.noHighlighting = function() {
1809 Mocha.prototype.delay = function delay() {
1821 Mocha.prototype.run = function(fn){
6435 var i = Mocha.utils.indexOf(uncaughtExceptionHandlers, fn);
6458 var Mocha = global.Mocha = require('mocha'),
6459 mocha = global.mocha = new Mocha({ reporter: 'html' });
6485 Mocha.Runner.immediately = function(callback) {
6498 Mocha.utils.forEach(uncaughtExceptionHandlers, function (fn) {
6510 Mocha.prototype.ui.call(this, ui);
6537 var query = Mocha.utils.parseQuery(global.location.search || '');
6542 return Mocha.prototype.run.call(mocha, function(err){
6546 Mocha.utils.highlightTags('code');
6556 Mocha.process = process;