指令行安裝 Cypress:
npm install cypress --save-dev
npm init
編輯package.json,添加如下的 json 語句:
"scripts": {
"open": "cypress open"
},
然後執行指令 npm run open, 即可打開 Cypress test runner:
預設看到的examples 檔案夾裡有很多現成的例子:
我們在 integration 檔案夾下建立一個 sample_spec.js:
會發現在 Test runner裡,立即能找到這個建立的測試:
輸入如下代碼:
describe('My First Test', () => {
it('Does not do much!', () => {
expect(true).to.equal(true)
})
})