10 lines
No EOL
208 B
JavaScript
Executable file
10 lines
No EOL
208 B
JavaScript
Executable file
var common = module.exports;
|
|
var path = require('path');
|
|
|
|
var rootDir = path.join(__dirname, '..');
|
|
common.dir = {
|
|
lib: rootDir + '/lib'
|
|
};
|
|
|
|
common.assert = require('assert');
|
|
common.fake = require('fake'); |