このテストファイルの実行時にTypeError: expect is not a function
が表示されるのはなぜですか?TypeError:Expectは関数ではありません
私はmochaとchaiをローカルにインストールしました。yarn run test
でテストを実行しました。これは単純に"test": "mocha"
です。
var chai = require('chai')
var expect = chai.expect()
describe('Array', function() {
describe('#indexOf()', function() {
it('should return -1 when the value is not present', function() {
expect([1, 2, 3].indexOf(4)).to.be.equal(-1)
})
})
})