ฉันมีไฟล์ทดสอบMochaที่มีลักษณะดังนี้:
var expect = require('chai').expect
var muting = require('../muting')
describe('muting', function () {
describe('init()', function () {
it('should inject an object into twitter', function () {
var twitter = 'twitter'
muting.init(twitter)
expect(muting.twitter).to.equal(twitter)
})
})
})
เมื่อฉันเรียกใช้mocha
จาก CLI มันจะรันการทดสอบสำเร็จ
เมื่อฉันเรียกใช้standard
(ปฏิบัติการสำหรับJavaScript Standard Style ) ฉันได้รับข้อผิดพลาดในฟังก์ชั่นกรอบงานของ Mocha ดังนี้:
standard: Use JavaScript Standard Style (https://github.com/feross/standard)
c:\..\test\index.js:5:0: 'describe' is not defined.
c:\..\test\index.js:6:2: 'describe' is not defined.
c:\..\test\index.js:7:4: 'it' is not defined.
วิธีใดที่จะทำให้ Standard ไม่บ่นเกี่ยวกับฟังก์ชันเหล่านี้ได้อย่างสะอาดที่สุด
it
ใช้รหัสปกติที่ไม่ใช่การทดสอบและมันจะผ่านการเป็นขุย? กล่าวอีกนัยหนึ่ง สามารถ จำกัด เฉพาะการทดสอบชั้นเรียนได้หรือไม่?