Guest User

Untitled

a guest
Jul 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ├── index.html
  2. ├── node_modules # node 套件目錄
  3. │ ├── mocha # mocha 目錄
  4. │ │ ├── bin # mocha 執行檔目錄
  5. │ │ │ ├── mocha # mocha 執行檔,我們就是透過這個 mocha 進行單元測試
  6. ├── package-lock.json
  7. ├── package.json
  8. └── tests # 測試目錄,以後所有測試程式統一放在 tests 目錄下
  9. └── test.js # 測試程式 test.js
Add Comment
Please, Sign In to add comment