mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
var common = exports;
|
|
|
|
var path = require('path');
|
|
var root = path.dirname(__dirname);
|
|
|
|
common.dir = {
|
|
lib: root + '/lib',
|
|
fixture: root + '/test/fixture',
|
|
};
|
|
|
|
common.assert = require('assert');
|