Below you will find pages that utilize the taxonomy term “Chai”
Posts
Chai - A BDD / TDD assertion library for node
Chai 是 Node.js 的 BDD / TDD 斷言套件。
使用前先從 Registry 下載套件。
npm install chai --save-dev Chai 有三種撰寫風格,should、expect、assert,assert 是比較偏向傳統的斷言方式,expect 與 should 則是偏向 BDD style 的斷言方式。
無論哪個撰寫風格在撰寫前都需引用 Chai 套件。
const chai = require('chai'); should 撰寫風格使用上要先告知 Chai 套件使用 should 撰寫風格。
chai.should(); 接著用目標值應該是…、目標值應該等於…、目標值應該有…類似這樣的寫法撰寫斷言。
... target.should.be.a(type); target.should.eaequal(value); target.should.have.lengthOf(length); ... 程式寫起來會像下面這樣:
const chai = require('chai'); const foo = "bar"; const beverages = { tea: [ 'chai', 'matcha', 'oolong' ] }; chai.should(); foo.should.be.a('string'); foo.should.equal('bar'); foo.should.have.lengthOf(3); beverages.should.have.property('tea').with.lengthOf(3); 如果斷言錯誤,可以看到像下面這樣斷言錯誤的訊息。
read more