这是我第一次尝试使用mocha和chai,我创建了这个小测试文件test.spec.js
,我在那里进行了一些测试。
var expect = require('chai').expect;
var foo = 'bar';
describe('Test', function () {
it('Should exist', function () {
expect(foo).to.exist;
});
it('Should be a string', function () {
expect(foo).to.be.a('string');
});
it('Should equal bar', function () {
expect(foo).to.equal('bar');
});
it('Should be at least 3 chars', function () {
expect(foo).to.have.length.above(2);
});
});
这是一个单独的文件,我有我的" main"代码。
但是,如何测试我在脚本文件中编写的实际相关代码?
我没有使用ES6,因此我无法导入或要求。但我正在使用npm,这就是我需要的方式。
所以,我的项目看起来像这样
A folder
- myscript.js
- test.spec.js
我如何测试myscript?
答案 0 :(得分:-1)
像这样分配您测试过的脚本:
var myscript = require('./myscript.js');
以下是一个例子:
'use strict'
const expect = require('chai').expect
const myscript = require('./myscript.js')
describe('myscript', function () {
it('should be a function', function() {
expect(typeof myscript).to.equal('function')
})
it("should return an object with toString method", function() {
expect(myscript().hasOwnProperty("toString")).to.be.true
})
}) // etc...