mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
Move tests/browser/test/.mocharc.js to tests/browser and use __dirname to make the require directive work regardless of where mocha is invoked from. Simplify the browser:test script accordingly, taking advantage also of the mocha default of running all tests in the test/ subdirectory.
7 lines
91 B
JavaScript
7 lines
91 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
ui: 'tdd',
|
|
require: __dirname + '/test/hooks.js',
|
|
};
|