feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
23
api.hyungi.net/node_modules/fast-json-patch/jasmine-run.mjs
generated
vendored
Normal file
23
api.hyungi.net/node_modules/fast-json-patch/jasmine-run.mjs
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import glob from 'glob';
|
||||
import Jasmine from 'jasmine';
|
||||
|
||||
const jasmine = new Jasmine();
|
||||
jasmine.loadConfigFile('test/jasmine.json');
|
||||
|
||||
const pattern = process.argv[2] || 'test/spec/*.js';
|
||||
|
||||
// Load your specs
|
||||
glob(pattern, function (er, files) {
|
||||
Promise.all(
|
||||
files
|
||||
// Use relative paths
|
||||
.map(f => f.replace(/^([^\/])/, './$1'))
|
||||
.map(f => import(f)
|
||||
.catch(e => {
|
||||
console.error('** Error loading ' + f + ': ');
|
||||
console.error(e);
|
||||
process.exit(1);
|
||||
}))
|
||||
)
|
||||
.then(() => jasmine.execute());
|
||||
});
|
||||
Reference in New Issue
Block a user