官术网_书友最值得收藏!

  • Backbone.js Testing
  • Ryan Roemer
  • 243字
  • 2021-08-13 16:48:29

Designing an application and test repository structure

Setting up a test infrastructure first requires a plan as to where all the parts and pieces will go. We will start with a simple directory structure for a code repository as follows:

app/
  index.html
  css/
  js/
    app/
    lib/

test/
  test.html
  js/
    lib/
    spec/

The app/index.html file contains the web application, while test/test.html provides the test driver page. Application and test libraries are respectively contained in the app/js/ and test/js/ directories.

Note

This is just one way to organize a Backbone.js application and tests. Other directory layouts may be more appropriate, and you should feel free to follow your own conventions and preferences in light of the specific development project at hand.

The Backbone.js application and component files (models, views, routers, and so on) are placed in app/js/app/, which may look something like the following:

app/js/app/
  app.js
  models/
    model-a.js
    ...
  views/
    view-a.js
    ...
  ...

The core application libraries are stored in app/js/lib/, which should include the libraries needed to drive the actual application:

app/js/lib/
  backbone.js
  jquery.js
  underscore.js
  ...

The test libraries and suites get a separate directory, test/js/, which isolates the test code from the application to avoid inadvertently introducing application dependencies on test functions or libraries:

test/js/
  lib/
    mocha.js
    mocha.css
    chai.js
    sinon.js
  spec/
    first.spec.js
    second.spec.js
    ...

Now that we have an abstract application and a test layout, we need to fill in all the pieces and populate directories with libraries, web pages, and test files.

主站蜘蛛池模板: 西乌珠穆沁旗| 弥渡县| 湖北省| 新民市| 镶黄旗| 安泽县| 西乡县| 竹山县| 卢龙县| 克拉玛依市| 波密县| 恩施市| 隆尧县| 辰溪县| 颍上县| 黄陵县| 郎溪县| 岳阳市| 色达县| 平泉县| 永泰县| 湖南省| 浦县| 磐安县| 广南县| 民丰县| 甘南县| 济阳县| 兖州市| 万山特区| 德安县| 常德市| 休宁县| 应用必备| 吉安县| 阿拉善盟| 曲沃县| 新营市| 浪卡子县| 章丘市| 调兵山市|