我有一个基本测试,只是比较 2 个数字,但我无法让它运行。谁能向我解释为什么以及如何解决这个问题?
杰森
{ "scripts": {
"test": "mocha test/**/*.js"
},
"name": "image-gallery",
"version": "1.0.0",
"description": "",
"main": "script-test.js",
"directories": {
"test": "script-test.js"
},
"author": "",
"license": "ISC"
}
测试.js
const assert = require('assert');
describe('number test', function() {
it('matching numbers', function() {
assert.ok(2 === 2);
});
});
慕后森
相关分类