mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-21 03:34:21 +00:00
17 lines
462 B
JavaScript
17 lines
462 B
JavaScript
const Jasmine = require('jasmine');
|
|
|
|
const jasmine = new Jasmine();
|
|
const util = require('./lib/util').default;
|
|
const path = require('path');
|
|
|
|
const testTmpPath = path.join(__dirname, './test/temp');
|
|
const configFilePath = path.join(__dirname, './test/jasmine.json');
|
|
// rm - rf./test / temp /
|
|
util.deleteFolderContentsRecursive(testTmpPath);
|
|
|
|
jasmine.loadConfigFile(configFilePath);
|
|
jasmine.configureDefaultReporter({
|
|
showColors: false
|
|
});
|
|
jasmine.execute();
|