diff --git a/docs/chai.html b/docs/chai.html index d6c03e9..95fd4ca 100644 --- a/docs/chai.html +++ b/docs/chai.html @@ -53,7 +53,7 @@ data-chapter-title="chai" data-filepath="chai.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -173,29 +173,59 @@ -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/docs/expect.html b/docs/expect.html index 01b45e2..f4aaf1d 100644 --- a/docs/expect.html +++ b/docs/expect.html @@ -53,7 +53,7 @@ data-chapter-title="expect" data-filepath="expect.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -173,29 +173,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/docs/expectjs.html b/docs/expectjs.html index 3627f72..4980a26 100644 --- a/docs/expectjs.html +++ b/docs/expectjs.html @@ -37,7 +37,7 @@ - + @@ -53,7 +53,7 @@ data-chapter-title="expect.js" data-filepath="expectjs.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -173,29 +173,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape @@ -295,7 +325,7 @@

    .withState

    - + diff --git a/docs/index.html b/docs/index.html index 0fc3a87..a659837 100644 --- a/docs/index.html +++ b/docs/index.html @@ -51,7 +51,7 @@ data-chapter-title="Introduction" data-filepath="README.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -171,29 +171,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/docs/installation.html b/docs/installation.html index 5a91ee7..f9f07af 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -53,7 +53,7 @@ data-chapter-title="Installation" data-filepath="installation.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -173,29 +173,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/docs/jasmine.html b/docs/jasmine.html new file mode 100644 index 0000000..958d8ec --- /dev/null +++ b/docs/jasmine.html @@ -0,0 +1,367 @@ + + + + + + + + jasmine | Redux Actions Assertions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    + + +
    +
    + + +
    + +

    jasmine

    +

    Registration

    +
    // using ES6 modules
    +import { registerAssertions } from 'redux-actions-assertions/jasmine';
    +
    +// using CommonJS modules
    +var registerAssertions = require('redux-actions-assertions/jasmine').registerAssertions;
    +
    +// registration
    +beforeEach(registerAssertions);
    +
    +

    Usage

    +

    .toDispatchActions

    +
    +

    expect(action).toDispatchActions(expectedActions, done)

    +
    +

    Asserts that when given action is dispatched it will dispatch expectedActions. action can be plain object (action) or function (action creator). expectedActions can be can be plain object (action) or function (action creator) or array of objects/functions.

    +
    expect(myActionCreator())
    +  .toDispatchActions({ type: 'MY_ACTION_START' }, done);
    +
    +

    .not.toDispatchActions

    +
    +

    expect(action).not.toDispatchActions(expectedActions, done)

    +
    +

    Asserts that when given action is dispatched it will not dispatch expectedActions. action can be plain object (action) or function (action creator). expectedActions can be can be plain object (action) or function (action creator) or array of objects/functions.

    +
    expect(myActionCreator())
    +  .not.toDispatchActions({ type: 'MY_ACTION_START' }, done);
    +
    +

    .toDispatchActionsWithState

    +
    +

    expect(action).toDispatchActionsWithState(state, expectedActions, done)

    +
    +

    Asserts that store initialised with state before action is dispatched.

    +
    const state = {property: 'value'};
    +const expectedActions = [{ type: 'MY_ACTION_START' }, finishActionCreator()];
    +expect(myActionCreator())
    +  .toDispatchActionsWithState(state, expectedActions, done);
    +
    +

    You can also use it with .not:

    +
    expect(myActionCreator())
    +  .not.toDispatchActionsWithState(state, expectedActions, done);
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/javascript.html b/docs/javascript.html index 621dac7..e346c7e 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -53,7 +53,7 @@ data-chapter-title="API Reference" data-filepath="javascript.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -173,29 +173,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/docs/jest.html b/docs/jest.html new file mode 100644 index 0000000..b974598 --- /dev/null +++ b/docs/jest.html @@ -0,0 +1,364 @@ + + + + + + + + jest | Redux Actions Assertions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    + + +
    +
    + + +
    + +

    jest

    +

    Registration

    +
    // add these two lines in your setupTestFrameworkScriptFile:
    +// http://facebook.github.io/jest/docs/configuration.html#setuptestframeworkscriptfile-string
    +import { registerAssertions } from 'redux-actions-assertions/jest';
    +
    +beforeEach(registerAssertions);
    +
    +

    Usage

    +

    .toDispatchActions

    +
    +

    expect(action).toDispatchActions(expectedActions, done)

    +
    +

    Asserts that when given action is dispatched it will dispatch expectedActions. action can be plain object (action) or function (action creator). expectedActions can be can be plain object (action) or function (action creator) or array of objects/functions.

    +
    expect(myActionCreator())
    +  .toDispatchActions({ type: 'MY_ACTION_START' }, done);
    +
    +

    .toNotDispatchActions

    +
    +

    expect(action).toNotDispatchActions(expectedActions, done)

    +
    +

    Asserts that when given action is dispatched it will not dispatch expectedActions. action can be plain object (action) or function (action creator). expectedActions can be can be plain object (action) or function (action creator) or array of objects/functions.

    +
    expect(myActionCreator())
    +  .toNotDispatchActions({ type: 'MY_ACTION_START' }, done);
    +
    +

    .toDispatchActionsWithState

    +
    +

    expect(action).toDispatchActionsWithState(state, expectedActions, done)

    +
    +

    Asserts that store initialised with state before action is dispatched.

    +
    const state = {property: 'value'};
    +const expectedActions = [{ type: 'MY_ACTION_START' }, finishActionCreator()];
    +expect(myActionCreator())
    +  .toDispatchActionsWithState(state, expectedActions, done);
    +
    +

    You can also use its variant .toNotDispatchActionsWithState:

    +
    expect(myActionCreator())
    +  .toNotDispatchActionsWithState(state, expectedActions, done);
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/search_index.json b/docs/search_index.json index 5698f05..dd0b6e2 100644 --- a/docs/search_index.json +++ b/docs/search_index.json @@ -1 +1 @@ -{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"installation.html":["action","apos;redux","assert","assertions&apo","assertions').registerinitialstorest","assertions').registermiddlewar","buildinitialstorest","commonj","default","dev","es6","function","here","import","initi","instal","list","middlewar","modul","need","npm","object","reduc","redux","reduxactionsassert","reduxactionsassertions.registerinitialstorest","registerinitialstorest","registerinitialstorestate(buildinitialstorest","registermiddlewar","registr","require('redux","root","save","state","store","us","var"],"index.html":["action","add","allow","assert","avoid","chai","code","comment","creator","expect","expect.j","found","framework/librari","frameworks/librari","initi","introduct","issu","javascript","librari","method","mock","nest","pleas","pure","reduc","redux","repetit","retest","setup","simplifi","store","support","test","testing.it","us"],"chai.html":["action","action.should.dispatch.actions(expectedact","action.should.not.dispatch.actions(expectedact","action.should.with.state(state).dispatch.actions(expectedact","action.should.with.state(state).not.dispatch.actions(expectedact","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assert.isdispatch","assert.isdispatching(act","assert.isdispatchingwithst","assert.isdispatchingwithstate(act","assert.isnotdispatch","assert.isnotdispatching(act","assert.isnotdispatchingwithst","assert.isnotdispatchingwithstate(act","assertions/chai&apo","assertions/chai').registerassert","befor","callback","chai","commonj","creator","dispatch","dispatch.act","es6","expect(action).not.to.dispatch.actions(expectedact","expect(action).to.dispatch.actions(expectedact","expect(action).to.not.dispatch.actions(expectedact","expect(action).with.state(state).not.to.dispatch.actions(expectedact","expect(action).with.state(state).to.dispatch.actions(expectedact","expect(action).with.state(state).to.not.dispatch.actions(expectedact","expect(myactioncr","expectedact","finishactioncr","function","given","import","initialis","modul","myactioncr","not.to.dispatch.act","object","objects/funct","plain","properti","registerassert","registr","require('redux","should.dispatch.act","should.not.dispatch.act","should.with","state","store","to.dispatch.act","to.not.dispatch.act","type","us","usag","var","with.stat"],"expect.html":["action","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/expect&apo","assertions/expect').registerassert","befor","callback","commonj","creator","dispatch","es6","expect","expect(action).todispatchactions(expectedact","expect(action).tonotdispatchactions(expectedact","expect(action).withstate(state).todispatchactions(expectedact","expect(myactioncr","expectedact","finishactioncr","function","given","import","initialis","modul","object","objects/funct","plain","registerassert","registr","require('redux","state","store","todispatchact","tonotdispatchact","type","us","usag","var","withstat","withstate({properti"],"expectjs.html":["action","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/expectjs&apo","assertions/expectjs').registerassert","befor","callback","commonj","creator","dispatch","dispatchact","es6","expect(action).not.to.dispatchactions(expectedact","expect(action).to.dispatchactions(expectedact","expect(action).to.not.dispatchactions(expectedact","expect(action).withstate(state).to.dispatchactions(expectedact","expect(myactioncr","expect.j","expectedact","finishactioncr","function","given","import","initialis","modul","not.dispatchact","not.to.dispatchact","object","objects/funct","plain","properti","registerassert","registr","require('redux","state","store","to.dispatchact","to.not.dispatchact","type","us","usag","var","withstat"],"javascript.html":["action","anyth","api","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions&apo","assertions').assert","assertions.todispatchact","assertions.todispatchactionswithst","assertions.tonotdispatchact","assertions.tonotdispatchactionswithst","befor","callback","commonj","creator","dispatch","don't","es6","expectedact","function","given","import","initialis","javascript","modul","need","object","objects/funct","plain","refer","regist","registr","require('redux","same","state","store","test","testactioncr","todispatchact","todispatchactions(act","todispatchactions(testactioncr","todispatchactions({properti","todispatchactionswithst","todispatchactionswithstate(initialst","tonotdispatchact","tonotdispatchactions(act","tonotdispatchactions(testactioncr","tonotdispatchactions({properti","tonotdispatchactionswithst","tonotdispatchactionswithstate(initialst","type","us","usag","var"],"should.html":["action","action.should.dispatchactions(expectedact","action.should.notdispatchactions(expectedact","action.should.with.state(state).dispatchactions(expectedact","action.should.withstate(state).dispatchactions(expectedact","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/should&apo","assertions/should').registerassert","befor","callback","commonj","creator","dispatch","dispatchact","es6","expectedact","function","given","import","initialis","modul","myactioncreator().should","notdispatchact","object","objects/funct","plain","properti","registerassert","registr","require('redux","should(action).dispatchactions(expectedact","should(action).notdispatchactions(expectedact","should(action).with.state(state).dispatchactions(expectedact","should(action).withstate(state).dispatchactions(expectedact","should(myactioncr","state","store","type","us","usag","var","with.stat","withstat"],"tape.html":["action","apos;my_action_start&apo","apos;redux","apos;tape&apo","apos;value&apo","array","assert","assertions&apo","assertions').assert","befor","below","call","callback","commonj","correct","creator","dispatch","done","edittag&apo","end","es6","expectedact","fail","function","given","gt","import","initialis","javascript","make","modul","need","number","object","objects/funct","pass","plain","plan","promise.then","require('redux","require('tape&apo","same","see","set","state","store","sure","t","t.end","t.fail","t.pass","t.plan","t.plan(1","tape","test","test('thunk","testactioncr","then(t.end","todispatchact","todispatchactions(act","todispatchactions(testactioncr","todispatchactions({properti","todispatchactionswithst","todispatchactionswithstate(initialst","tonotdispatchact","tonotdispatchactions(act","tonotdispatchactions(testactioncr","tonotdispatchactions({properti","tonotdispatchactionswithst","tonotdispatchactionswithstate(initialst","type","up","us","usag","var","you'r"],"what_it_does.html":["action","action.act","action_a_start","action_a_success","action_b_start","action_b_success","actiona","actionb","again","allow","api.geta().then(respons","api.getb().then(respons","applic","async","avoid","b","b.action","boilerpl","catch(err","code","configur","configurestore(middlewar","const","creator","custom","customis","dispatch","dispatch(actionafailure(err","dispatch(actionafinish(respons","dispatch(actionastart","dispatch(actionb","dispatch(actionbfailure(err","dispatch(actionbfinish(respons","dispatch(actionbstart","don't","done","each","example:w","execut","expect","expect(actiona()).withst","expect(actions).toequal(expectedact","expect(fetchdata()).todispatchactions(expectedact","expect(fetchdata()).withstate({/*custom","expect(store.getactions()).toequal(expectedact","expectedact","fluent","function","gener","global","gt","http","independ","initi","make","method","middlewar","mockstor","need","nest","object","on","provid","reduc","registerinitialstorestate(/*object","registerinitialstorestate(buildinitialstorestate(/*your","registermiddlewar","repetit","request","requests.act","result","retest","return","root","separately.therefor","set","setup","simplifi","sing","state","state*/}).todispatchactions(expectedact","store","store.dispatch(actiona()).then","store.dispatch(fetchdata()).then","store.getact","success","test","then(done).catch(don","thunk","time","todispatch","todo","trigger","two","type","types.fetch_todos_request","us","without"]},"length":9},"tokenStore":{"root":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.07368421052631578},"index.html":{"ref":"index.html","tf":0.0784313725490196},"chai.html":{"ref":"chai.html","tf":0.08426966292134831},"expect.html":{"ref":"expect.html","tf":0.15151515151515152},"expectjs.html":{"ref":"expectjs.html","tf":0.14018691588785046},"javascript.html":{"ref":"javascript.html","tf":0.13432835820895522},"should.html":{"ref":"should.html","tf":0.1048951048951049},"tape.html":{"ref":"tape.html","tf":0.09473684210526316},"what_it_does.html":{"ref":"what_it_does.html","tf":0.0663265306122449}},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"_":{"docs":{},"a":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}}},"b":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"a":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}},"b":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"chai.html":{"ref":"chai.html","tf":0.056179775280898875},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"should.html":{"ref":"should.html","tf":0.055944055944055944},"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}},"i":{"docs":{"javascript.html":{"ref":"javascript.html","tf":5}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}},"b":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684},"index.html":{"ref":"index.html","tf":0.11764705882352941},"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.028037383177570093},"javascript.html":{"ref":"javascript.html","tf":0.05970149253731343},"should.html":{"ref":"should.html","tf":0.02097902097902098},"tape.html":{"ref":"tape.html","tf":0.042105263157894736}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"installation.html":{"ref":"installation.html","tf":0.042105263157894736},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"d":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0392156862745098}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"b":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.025510204081632654}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}},"d":{"docs":{},"e":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.04591836734693878}}}}}},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"chai.html":{"ref":"chai.html","tf":10.00561797752809}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chai.html":{"ref":"chai.html","tf":0.1348314606741573},"expect.html":{"ref":"expect.html","tf":0.06060606060606061},"expectjs.html":{"ref":"expectjs.html","tf":0.07476635514018691},"javascript.html":{"ref":"javascript.html","tf":0.05970149253731343},"should.html":{"ref":"should.html","tf":0.11188811188811189},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"i":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368}}}}}}},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.028089887640449437},"expect.html":{"ref":"expect.html","tf":0.050505050505050504},"expectjs.html":{"ref":"expectjs.html","tf":0.04672897196261682},"javascript.html":{"ref":"javascript.html","tf":0.04477611940298507},"should.html":{"ref":"should.html","tf":0.03496503496503497},"tape.html":{"ref":"tape.html","tf":0.031578947368421054},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"should.html":{"ref":"should.html","tf":0.04895104895104895}}}}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"b":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}},"e":{"docs":{},"s":{"6":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}},"docs":{}},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"expect.html":{"ref":"expect.html","tf":10.01010101010101},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}},".":{"docs":{},"j":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"expectjs.html":{"ref":"expectjs.html","tf":10.009345794392523}}}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"/":{"docs":{},"*":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0449438202247191},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.05970149253731343},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.042105263157894736},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{},"w":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.02040816326530612}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.030612244897959183}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":10.021052631578947}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":10}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.06315789473684211},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}},"c":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.0392156862745098}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.02040816326530612}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chai.html":{"ref":"chai.html","tf":0.03932584269662921}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"should.html":{"ref":"should.html","tf":0.027972027972027972}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368}}}},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.02097902097902098}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}},"s":{"docs":{},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}}}}}},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}},"x":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"index.html":{"ref":"index.html","tf":0.09803921568627451}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.05263157894736842}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"/":{"docs":{},"*":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"*":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.028037383177570093},"should.html":{"ref":"should.html","tf":0.02097902097902098}}}}}}}}}},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.05263157894736842},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.013986013986013986}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.02040816326530612}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":5}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}},"m":{"docs":{},"e":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.015789473684210527}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684},"what_it_does.html":{"ref":"what_it_does.html","tf":0.025510204081632654}},"*":{"docs":{},"/":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684},"index.html":{"ref":"index.html","tf":0.0392156862745098},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684},"what_it_does.html":{"ref":"what_it_does.html","tf":0.030612244897959183}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"u":{"docs":{},"p":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"n":{"docs":{},"g":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}},"r":{"docs":{},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"should.html":{"ref":"should.html","tf":0.027972027972027972}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.09473684210526316},"index.html":{"ref":"index.html","tf":0.0392156862745098},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}},"a":{"docs":{},"g":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}},"p":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.042105263157894736},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.03731343283582089},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}},"n":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"should.html":{"ref":"should.html","tf":0.027972027972027972}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0392156862745098},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.015789473684210527},"what_it_does.html":{"ref":"what_it_does.html","tf":0.04081632653061224}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.016853932584269662}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}}}}}},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chai.html":{"ref":"chai.html","tf":0.056179775280898875},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"should.html":{"ref":"should.html","tf":0.055944055944055944},"tape.html":{"ref":"tape.html","tf":0.02631578947368421},"what_it_does.html":{"ref":"what_it_does.html","tf":0.03571428571428571}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"(":{"1":{"docs":{"tape.html":{"ref":"tape.html","tf":0.021052631578947368}}},"docs":{}}}}}}},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":10.005263157894737}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"t":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}}}},"w":{"docs":{},"o":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"g":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421},"what_it_does.html":{"ref":"what_it_does.html","tf":0.04081632653061224}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"should.html":{"ref":"should.html","tf":0.02097902097902098}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"should.html":{"ref":"should.html","tf":0.02097902097902098}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"r":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}},"length":501},"corpusTokens":["action","action.act","action.should.dispatch.actions(expectedact","action.should.dispatchactions(expectedact","action.should.not.dispatch.actions(expectedact","action.should.notdispatchactions(expectedact","action.should.with.state(state).dispatch.actions(expectedact","action.should.with.state(state).dispatchactions(expectedact","action.should.with.state(state).not.dispatch.actions(expectedact","action.should.withstate(state).dispatchactions(expectedact","action_a_start","action_a_success","action_b_start","action_b_success","actiona","actionb","add","again","allow","anyth","api","api.geta().then(respons","api.getb().then(respons","apos;my_action_start&apo","apos;redux","apos;tape&apo","apos;value&apo","applic","array","assert","assert.isdispatch","assert.isdispatching(act","assert.isdispatchingwithst","assert.isdispatchingwithstate(act","assert.isnotdispatch","assert.isnotdispatching(act","assert.isnotdispatchingwithst","assert.isnotdispatchingwithstate(act","assertions&apo","assertions').assert","assertions').registerinitialstorest","assertions').registermiddlewar","assertions.todispatchact","assertions.todispatchactionswithst","assertions.tonotdispatchact","assertions.tonotdispatchactionswithst","assertions/chai&apo","assertions/chai').registerassert","assertions/expect&apo","assertions/expect').registerassert","assertions/expectjs&apo","assertions/expectjs').registerassert","assertions/should&apo","assertions/should').registerassert","async","avoid","b","b.action","befor","below","boilerpl","buildinitialstorest","call","callback","catch(err","chai","code","comment","commonj","configur","configurestore(middlewar","const","correct","creator","custom","customis","default","dev","dispatch","dispatch(actionafailure(err","dispatch(actionafinish(respons","dispatch(actionastart","dispatch(actionb","dispatch(actionbfailure(err","dispatch(actionbfinish(respons","dispatch(actionbstart","dispatch.act","dispatchact","don't","done","each","edittag&apo","end","es6","example:w","execut","expect","expect(action).not.to.dispatch.actions(expectedact","expect(action).not.to.dispatchactions(expectedact","expect(action).to.dispatch.actions(expectedact","expect(action).to.dispatchactions(expectedact","expect(action).to.not.dispatch.actions(expectedact","expect(action).to.not.dispatchactions(expectedact","expect(action).todispatchactions(expectedact","expect(action).tonotdispatchactions(expectedact","expect(action).with.state(state).not.to.dispatch.actions(expectedact","expect(action).with.state(state).to.dispatch.actions(expectedact","expect(action).with.state(state).to.not.dispatch.actions(expectedact","expect(action).withstate(state).to.dispatchactions(expectedact","expect(action).withstate(state).todispatchactions(expectedact","expect(actiona()).withst","expect(actions).toequal(expectedact","expect(fetchdata()).todispatchactions(expectedact","expect(fetchdata()).withstate({/*custom","expect(myactioncr","expect(store.getactions()).toequal(expectedact","expect.j","expectedact","fail","finishactioncr","fluent","found","framework/librari","frameworks/librari","function","gener","given","global","gt","here","http","import","independ","initi","initialis","instal","introduct","issu","javascript","librari","list","make","method","middlewar","mock","mockstor","modul","myactioncr","myactioncreator().should","need","nest","not.dispatchact","not.to.dispatch.act","not.to.dispatchact","notdispatchact","npm","number","object","objects/funct","on","pass","plain","plan","pleas","promise.then","properti","provid","pure","reduc","redux","reduxactionsassert","reduxactionsassertions.registerinitialstorest","refer","regist","registerassert","registerinitialstorest","registerinitialstorestate(/*object","registerinitialstorestate(buildinitialstorest","registerinitialstorestate(buildinitialstorestate(/*your","registermiddlewar","registr","repetit","request","requests.act","require('redux","require('tape&apo","result","retest","return","root","same","save","see","separately.therefor","set","setup","should(action).dispatchactions(expectedact","should(action).notdispatchactions(expectedact","should(action).with.state(state).dispatchactions(expectedact","should(action).withstate(state).dispatchactions(expectedact","should(myactioncr","should.dispatch.act","should.not.dispatch.act","should.with","simplifi","sing","state","state*/}).todispatchactions(expectedact","store","store.dispatch(actiona()).then","store.dispatch(fetchdata()).then","store.getact","success","support","sure","t","t.end","t.fail","t.pass","t.plan","t.plan(1","tape","test","test('thunk","testactioncr","testing.it","then(done).catch(don","then(t.end","thunk","time","to.dispatch.act","to.dispatchact","to.not.dispatch.act","to.not.dispatchact","todispatch","todispatchact","todispatchactions(act","todispatchactions(testactioncr","todispatchactions({properti","todispatchactionswithst","todispatchactionswithstate(initialst","todo","tonotdispatchact","tonotdispatchactions(act","tonotdispatchactions(testactioncr","tonotdispatchactions({properti","tonotdispatchactionswithst","tonotdispatchactionswithstate(initialst","trigger","two","type","types.fetch_todos_request","up","us","usag","var","with.stat","without","withstat","withstate({properti","you'r"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file +{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"jasmine.html":["action","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/jasmine&apo","assertions/jasmine').registerassert","befor","beforeeach(registerassert","commonj","const","creator","dispatch","done","es6","expect(action).not.todispatchactions(expectedact","expect(action).todispatchactions(expectedact","expect(action).todispatchactionswithstate(st","expect(myactioncr","expectedact","finishactioncr","function","given","import","initialis","jasmin","modul","not.todispatchact","not.todispatchactionswithstate(st","object","objects/funct","plain","properti","registerassert","registr","require('redux","state","store","todispatchact","todispatchactionswithst","todispatchactionswithstate(st","type","us","usag","var"],"index.html":["action","add","allow","assert","avoid","chai","code","comment","creator","expect","expect.j","found","framework/librari","frameworks/librari","initi","introduct","issu","javascript","librari","method","mock","nest","pleas","pure","reduc","redux","repetit","retest","setup","simplifi","store","support","test","testing.it","us"],"chai.html":["action","action.should.dispatch.actions(expectedact","action.should.not.dispatch.actions(expectedact","action.should.with.state(state).dispatch.actions(expectedact","action.should.with.state(state).not.dispatch.actions(expectedact","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assert.isdispatch","assert.isdispatching(act","assert.isdispatchingwithst","assert.isdispatchingwithstate(act","assert.isnotdispatch","assert.isnotdispatching(act","assert.isnotdispatchingwithst","assert.isnotdispatchingwithstate(act","assertions/chai&apo","assertions/chai').registerassert","befor","callback","chai","commonj","creator","dispatch","dispatch.act","es6","expect(action).not.to.dispatch.actions(expectedact","expect(action).to.dispatch.actions(expectedact","expect(action).to.not.dispatch.actions(expectedact","expect(action).with.state(state).not.to.dispatch.actions(expectedact","expect(action).with.state(state).to.dispatch.actions(expectedact","expect(action).with.state(state).to.not.dispatch.actions(expectedact","expect(myactioncr","expectedact","finishactioncr","function","given","import","initialis","modul","myactioncr","not.to.dispatch.act","object","objects/funct","plain","properti","registerassert","registr","require('redux","should.dispatch.act","should.not.dispatch.act","should.with","state","store","to.dispatch.act","to.not.dispatch.act","type","us","usag","var","with.stat"],"expect.html":["action","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/expect&apo","assertions/expect').registerassert","befor","callback","commonj","creator","dispatch","es6","expect","expect(action).todispatchactions(expectedact","expect(action).tonotdispatchactions(expectedact","expect(action).withstate(state).todispatchactions(expectedact","expect(myactioncr","expectedact","finishactioncr","function","given","import","initialis","modul","object","objects/funct","plain","registerassert","registr","require('redux","state","store","todispatchact","tonotdispatchact","type","us","usag","var","withstat","withstate({properti"],"expectjs.html":["action","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/expectjs&apo","assertions/expectjs').registerassert","befor","callback","commonj","creator","dispatch","dispatchact","es6","expect(action).not.to.dispatchactions(expectedact","expect(action).to.dispatchactions(expectedact","expect(action).to.not.dispatchactions(expectedact","expect(action).withstate(state).to.dispatchactions(expectedact","expect(myactioncr","expect.j","expectedact","finishactioncr","function","given","import","initialis","modul","not.dispatchact","not.to.dispatchact","object","objects/funct","plain","properti","registerassert","registr","require('redux","state","store","to.dispatchact","to.not.dispatchact","type","us","usag","var","withstat"],"installation.html":["action","apos;redux","assert","assertions&apo","assertions').registerinitialstorest","assertions').registermiddlewar","buildinitialstorest","commonj","default","dev","es6","function","here","import","initi","instal","list","middlewar","modul","need","npm","object","reduc","redux","reduxactionsassert","reduxactionsassertions.registerinitialstorest","registerinitialstorest","registerinitialstorestate(buildinitialstorest","registermiddlewar","registr","require('redux","root","save","state","store","us","var"],"javascript.html":["action","anyth","api","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions&apo","assertions').assert","assertions.todispatchact","assertions.todispatchactionswithst","assertions.tonotdispatchact","assertions.tonotdispatchactionswithst","befor","callback","commonj","creator","dispatch","don't","es6","expectedact","function","given","import","initialis","javascript","modul","need","object","objects/funct","plain","refer","regist","registr","require('redux","same","state","store","test","testactioncr","todispatchact","todispatchactions(act","todispatchactions(testactioncr","todispatchactions({properti","todispatchactionswithst","todispatchactionswithstate(initialst","tonotdispatchact","tonotdispatchactions(act","tonotdispatchactions(testactioncr","tonotdispatchactions({properti","tonotdispatchactionswithst","tonotdispatchactionswithstate(initialst","type","us","usag","var"],"jest.html":["action","add","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/jest&apo","befor","beforeeach(registerassert","const","creator","dispatch","done","expect(action).todispatchactions(expectedact","expect(action).todispatchactionswithstate(st","expect(action).tonotdispatchactions(expectedact","expect(myactioncr","expectedact","finishactioncr","function","given","http://facebook.github.io/jest/docs/configuration.html#setuptestframeworkscriptfil","import","initialis","jest","line","object","objects/funct","plain","properti","registerassert","registr","setuptestframeworkscriptfil","state","store","string","todispatchact","todispatchactionswithst","todispatchactionswithstate(st","tonotdispatchact","tonotdispatchactionswithst","tonotdispatchactionswithstate(st","two","type","us","usag","variant"],"should.html":["action","action.should.dispatchactions(expectedact","action.should.notdispatchactions(expectedact","action.should.with.state(state).dispatchactions(expectedact","action.should.withstate(state).dispatchactions(expectedact","apos;my_action_start&apo","apos;redux","apos;value&apo","array","assert","assertions/should&apo","assertions/should').registerassert","befor","callback","commonj","creator","dispatch","dispatchact","es6","expectedact","function","given","import","initialis","modul","myactioncreator().should","notdispatchact","object","objects/funct","plain","properti","registerassert","registr","require('redux","should(action).dispatchactions(expectedact","should(action).notdispatchactions(expectedact","should(action).with.state(state).dispatchactions(expectedact","should(action).withstate(state).dispatchactions(expectedact","should(myactioncr","state","store","type","us","usag","var","with.stat","withstat"],"tape.html":["action","apos;my_action_start&apo","apos;redux","apos;tape&apo","apos;value&apo","array","assert","assertions&apo","assertions').assert","befor","below","call","callback","commonj","correct","creator","dispatch","done","edittag&apo","end","es6","expectedact","fail","function","given","gt","import","initialis","javascript","make","modul","need","number","object","objects/funct","pass","plain","plan","promise.then","require('redux","require('tape&apo","same","see","set","state","store","sure","t","t.end","t.fail","t.pass","t.plan","t.plan(1","tape","test","test('thunk","testactioncr","then(t.end","todispatchact","todispatchactions(act","todispatchactions(testactioncr","todispatchactions({properti","todispatchactionswithst","todispatchactionswithstate(initialst","tonotdispatchact","tonotdispatchactions(act","tonotdispatchactions(testactioncr","tonotdispatchactions({properti","tonotdispatchactionswithst","tonotdispatchactionswithstate(initialst","type","up","us","usag","var","you'r"],"what_it_does.html":["action","action.act","action_a_start","action_a_success","action_b_start","action_b_success","actiona","actionb","again","allow","api.geta().then(respons","api.getb().then(respons","applic","async","avoid","b","b.action","boilerpl","catch(err","code","configur","configurestore(middlewar","const","creator","custom","customis","dispatch","dispatch(actionafailure(err","dispatch(actionafinish(respons","dispatch(actionastart","dispatch(actionb","dispatch(actionbfailure(err","dispatch(actionbfinish(respons","dispatch(actionbstart","don't","done","each","example:w","execut","expect","expect(actiona()).withst","expect(actions).toequal(expectedact","expect(fetchdata()).todispatchactions(expectedact","expect(fetchdata()).withstate({/*custom","expect(store.getactions()).toequal(expectedact","expectedact","fluent","function","gener","global","gt","http","independ","initi","make","method","middlewar","mockstor","need","nest","object","on","provid","reduc","registerinitialstorestate(/*object","registerinitialstorestate(buildinitialstorestate(/*your","registermiddlewar","repetit","request","requests.act","result","retest","return","root","separately.therefor","set","setup","simplifi","sing","state","state*/}).todispatchactions(expectedact","store","store.dispatch(actiona()).then","store.dispatch(fetchdata()).then","store.getact","success","test","then(done).catch(don","thunk","time","todispatch","todo","trigger","two","type","types.fetch_todos_request","us","without"]},"length":11},"tokenStore":{"root":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.13636363636363635},"index.html":{"ref":"index.html","tf":0.0784313725490196},"chai.html":{"ref":"chai.html","tf":0.08426966292134831},"expect.html":{"ref":"expect.html","tf":0.15151515151515152},"expectjs.html":{"ref":"expectjs.html","tf":0.14018691588785046},"installation.html":{"ref":"installation.html","tf":0.07368421052631578},"javascript.html":{"ref":"javascript.html","tf":0.13432835820895522},"jest.html":{"ref":"jest.html","tf":0.1320754716981132},"should.html":{"ref":"should.html","tf":0.1048951048951049},"tape.html":{"ref":"tape.html","tf":0.09473684210526316},"what_it_does.html":{"ref":"what_it_does.html","tf":0.0663265306122449}},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"_":{"docs":{},"a":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}}},"b":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"a":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}},"b":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.02727272727272727},"chai.html":{"ref":"chai.html","tf":0.056179775280898875},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"jest.html":{"ref":"jest.html","tf":0.02830188679245283},"should.html":{"ref":"should.html","tf":0.055944055944055944},"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}},"i":{"docs":{"javascript.html":{"ref":"javascript.html","tf":5}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}},"b":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.02727272727272727},"index.html":{"ref":"index.html","tf":0.11764705882352941},"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.028037383177570093},"installation.html":{"ref":"installation.html","tf":0.010526315789473684},"javascript.html":{"ref":"javascript.html","tf":0.05970149253731343},"jest.html":{"ref":"jest.html","tf":0.02830188679245283},"should.html":{"ref":"should.html","tf":0.02097902097902098},"tape.html":{"ref":"tape.html","tf":0.042105263157894736}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"s":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"installation.html":{"ref":"installation.html","tf":0.042105263157894736},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"s":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"d":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0392156862745098},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"b":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.025510204081632654}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}},"e":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"what_it_does.html":{"ref":"what_it_does.html","tf":0.04591836734693878}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.03636363636363636},"index.html":{"ref":"index.html","tf":0.0196078431372549},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"jest.html":{"ref":"jest.html","tf":0.03773584905660377},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"chai.html":{"ref":"chai.html","tf":10.00561797752809}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chai.html":{"ref":"chai.html","tf":0.1348314606741573},"expect.html":{"ref":"expect.html","tf":0.06060606060606061},"expectjs.html":{"ref":"expectjs.html","tf":0.07476635514018691},"javascript.html":{"ref":"javascript.html","tf":0.05970149253731343},"should.html":{"ref":"should.html","tf":0.11188811188811189},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"i":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.045454545454545456},"chai.html":{"ref":"chai.html","tf":0.028089887640449437},"expect.html":{"ref":"expect.html","tf":0.050505050505050504},"expectjs.html":{"ref":"expectjs.html","tf":0.04672897196261682},"javascript.html":{"ref":"javascript.html","tf":0.04477611940298507},"jest.html":{"ref":"jest.html","tf":0.04716981132075472},"should.html":{"ref":"should.html","tf":0.03496503496503497},"tape.html":{"ref":"tape.html","tf":0.031578947368421054},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"should.html":{"ref":"should.html","tf":0.04895104895104895}}}}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"b":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.06363636363636363},"jest.html":{"ref":"jest.html","tf":0.0660377358490566},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368}}}}}}},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}},"e":{"docs":{},"s":{"6":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}},"docs":{}},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"expect.html":{"ref":"expect.html","tf":10.01010101010101},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.03636363636363636},"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"jest.html":{"ref":"jest.html","tf":0.03773584905660377}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"/":{"docs":{},"*":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.07272727272727272},"chai.html":{"ref":"chai.html","tf":0.0449438202247191},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.05970149253731343},"jest.html":{"ref":"jest.html","tf":0.07547169811320754},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.042105263157894736},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}}},".":{"docs":{},"j":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"expectjs.html":{"ref":"expectjs.html","tf":10.009345794392523}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{},"w":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.03636363636363636},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"jest.html":{"ref":"jest.html","tf":0.03773584905660377},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.02040816326530612}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"g":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421},"what_it_does.html":{"ref":"what_it_does.html","tf":0.04081632653061224}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.030612244897959183}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":10}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":10.021052631578947}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}},"j":{"docs":{},"a":{"docs":{},"s":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":10.00909090909091}}}}}},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"jest.html":{"ref":"jest.html","tf":10.00943396226415}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"installation.html":{"ref":"installation.html","tf":0.06315789473684211},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}},"c":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.0392156862745098}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.02040816326530612}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chai.html":{"ref":"chai.html","tf":0.03932584269662921}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"should.html":{"ref":"should.html","tf":0.027972027972027972}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.02097902097902098}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.03636363636363636},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"jest.html":{"ref":"jest.html","tf":0.03773584905660377},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}},"s":{"docs":{},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}}}}}},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.03636363636363636},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expect.html":{"ref":"expect.html","tf":0.04040404040404041},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.03731343283582089},"jest.html":{"ref":"jest.html","tf":0.03773584905660377},"should.html":{"ref":"should.html","tf":0.027972027972027972},"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}},"n":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.02247191011235955},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.027972027972027972}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.028037383177570093},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.02097902097902098}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.05263157894736842}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"/":{"docs":{},"*":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"*":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}},"r":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"installation.html":{"ref":"installation.html","tf":0.05263157894736842},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.013986013986013986}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}},"x":{"docs":{"index.html":{"ref":"index.html","tf":0.09803921568627451},"installation.html":{"ref":"installation.html","tf":0.021052631578947368}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.02040816326530612}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":5}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"chai.html":{"ref":"chai.html","tf":0.016853932584269662},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.031578947368421054},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684},"what_it_does.html":{"ref":"what_it_does.html","tf":0.025510204081632654}},"*":{"docs":{},"/":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"index.html":{"ref":"index.html","tf":0.0392156862745098},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.010526315789473684},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684},"what_it_does.html":{"ref":"what_it_does.html","tf":0.030612244897959183}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}},"e":{"docs":{},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"u":{"docs":{},"p":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"n":{"docs":{},"g":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}},"r":{"docs":{},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"should.html":{"ref":"should.html","tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"should.html":{"ref":"should.html","tf":0.027972027972027972}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}},"m":{"docs":{},"e":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.015789473684210527}}}}}},"t":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.01818181818181818},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}}}}}},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.016853932584269662}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.0056179775280898875}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.018867924528301886},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}}},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.02727272727272727},"chai.html":{"ref":"chai.html","tf":0.056179775280898875},"expect.html":{"ref":"expect.html","tf":0.030303030303030304},"expectjs.html":{"ref":"expectjs.html","tf":0.037383177570093455},"javascript.html":{"ref":"javascript.html","tf":0.029850746268656716},"jest.html":{"ref":"jest.html","tf":0.02830188679245283},"should.html":{"ref":"should.html","tf":0.055944055944055944},"tape.html":{"ref":"tape.html","tf":0.02631578947368421},"what_it_does.html":{"ref":"what_it_does.html","tf":0.03571428571428571}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0392156862745098},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.015789473684210527},"what_it_does.html":{"ref":"what_it_does.html","tf":0.04081632653061224}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}}}}}}},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"tape.html":{"ref":"tape.html","tf":0.02631578947368421}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}},"(":{"1":{"docs":{"tape.html":{"ref":"tape.html","tf":0.021052631578947368}}},"docs":{}}}}}}},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"tape.html":{"ref":"tape.html","tf":10.005263157894737}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"t":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"k":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}}}}},"u":{"docs":{},"s":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.02727272727272727},"index.html":{"ref":"index.html","tf":0.0392156862745098},"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"expect.html":{"ref":"expect.html","tf":0.020202020202020204},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"installation.html":{"ref":"installation.html","tf":0.09473684210526316},"javascript.html":{"ref":"javascript.html","tf":0.014925373134328358},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.013986013986013986},"tape.html":{"ref":"tape.html","tf":0.021052631578947368},"what_it_does.html":{"ref":"what_it_does.html","tf":0.01020408163265306}},"a":{"docs":{},"g":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"jest.html":{"ref":"jest.html","tf":0.009433962264150943},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}}}}},"p":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"jasmine.html":{"ref":"jasmine.html","tf":0.00909090909090909},"chai.html":{"ref":"chai.html","tf":0.0056179775280898875},"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.009345794392523364},"installation.html":{"ref":"installation.html","tf":0.042105263157894736},"javascript.html":{"ref":"javascript.html","tf":0.007462686567164179},"should.html":{"ref":"should.html","tf":0.006993006993006993},"tape.html":{"ref":"tape.html","tf":0.010526315789473684}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.0196078431372549}}}}}}},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}},"n":{"docs":{},"e":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chai.html":{"ref":"chai.html","tf":0.011235955056179775},"should.html":{"ref":"should.html","tf":0.02097902097902098}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102},"expectjs.html":{"ref":"expectjs.html","tf":0.018691588785046728},"should.html":{"ref":"should.html","tf":0.02097902097902098}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"expect.html":{"ref":"expect.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.015306122448979591}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.010526315789473684}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"what_it_does.html":{"ref":"what_it_does.html","tf":0.00510204081632653}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},"/":{"docs":{},"j":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"jest.html":{"ref":"jest.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"r":{"docs":{"tape.html":{"ref":"tape.html","tf":0.005263157894736842}}}}}}}}}}}}},"length":595},"corpusTokens":["action","action.act","action.should.dispatch.actions(expectedact","action.should.dispatchactions(expectedact","action.should.not.dispatch.actions(expectedact","action.should.notdispatchactions(expectedact","action.should.with.state(state).dispatch.actions(expectedact","action.should.with.state(state).dispatchactions(expectedact","action.should.with.state(state).not.dispatch.actions(expectedact","action.should.withstate(state).dispatchactions(expectedact","action_a_start","action_a_success","action_b_start","action_b_success","actiona","actionb","add","again","allow","anyth","api","api.geta().then(respons","api.getb().then(respons","apos;my_action_start&apo","apos;redux","apos;tape&apo","apos;value&apo","applic","array","assert","assert.isdispatch","assert.isdispatching(act","assert.isdispatchingwithst","assert.isdispatchingwithstate(act","assert.isnotdispatch","assert.isnotdispatching(act","assert.isnotdispatchingwithst","assert.isnotdispatchingwithstate(act","assertions&apo","assertions').assert","assertions').registerinitialstorest","assertions').registermiddlewar","assertions.todispatchact","assertions.todispatchactionswithst","assertions.tonotdispatchact","assertions.tonotdispatchactionswithst","assertions/chai&apo","assertions/chai').registerassert","assertions/expect&apo","assertions/expect').registerassert","assertions/expectjs&apo","assertions/expectjs').registerassert","assertions/jasmine&apo","assertions/jasmine').registerassert","assertions/jest&apo","assertions/should&apo","assertions/should').registerassert","async","avoid","b","b.action","befor","beforeeach(registerassert","below","boilerpl","buildinitialstorest","call","callback","catch(err","chai","code","comment","commonj","configur","configurestore(middlewar","const","correct","creator","custom","customis","default","dev","dispatch","dispatch(actionafailure(err","dispatch(actionafinish(respons","dispatch(actionastart","dispatch(actionb","dispatch(actionbfailure(err","dispatch(actionbfinish(respons","dispatch(actionbstart","dispatch.act","dispatchact","don't","done","each","edittag&apo","end","es6","example:w","execut","expect","expect(action).not.to.dispatch.actions(expectedact","expect(action).not.to.dispatchactions(expectedact","expect(action).not.todispatchactions(expectedact","expect(action).to.dispatch.actions(expectedact","expect(action).to.dispatchactions(expectedact","expect(action).to.not.dispatch.actions(expectedact","expect(action).to.not.dispatchactions(expectedact","expect(action).todispatchactions(expectedact","expect(action).todispatchactionswithstate(st","expect(action).tonotdispatchactions(expectedact","expect(action).with.state(state).not.to.dispatch.actions(expectedact","expect(action).with.state(state).to.dispatch.actions(expectedact","expect(action).with.state(state).to.not.dispatch.actions(expectedact","expect(action).withstate(state).to.dispatchactions(expectedact","expect(action).withstate(state).todispatchactions(expectedact","expect(actiona()).withst","expect(actions).toequal(expectedact","expect(fetchdata()).todispatchactions(expectedact","expect(fetchdata()).withstate({/*custom","expect(myactioncr","expect(store.getactions()).toequal(expectedact","expect.j","expectedact","fail","finishactioncr","fluent","found","framework/librari","frameworks/librari","function","gener","given","global","gt","here","http","http://facebook.github.io/jest/docs/configuration.html#setuptestframeworkscriptfil","import","independ","initi","initialis","instal","introduct","issu","jasmin","javascript","jest","librari","line","list","make","method","middlewar","mock","mockstor","modul","myactioncr","myactioncreator().should","need","nest","not.dispatchact","not.to.dispatch.act","not.to.dispatchact","not.todispatchact","not.todispatchactionswithstate(st","notdispatchact","npm","number","object","objects/funct","on","pass","plain","plan","pleas","promise.then","properti","provid","pure","reduc","redux","reduxactionsassert","reduxactionsassertions.registerinitialstorest","refer","regist","registerassert","registerinitialstorest","registerinitialstorestate(/*object","registerinitialstorestate(buildinitialstorest","registerinitialstorestate(buildinitialstorestate(/*your","registermiddlewar","registr","repetit","request","requests.act","require('redux","require('tape&apo","result","retest","return","root","same","save","see","separately.therefor","set","setup","setuptestframeworkscriptfil","should(action).dispatchactions(expectedact","should(action).notdispatchactions(expectedact","should(action).with.state(state).dispatchactions(expectedact","should(action).withstate(state).dispatchactions(expectedact","should(myactioncr","should.dispatch.act","should.not.dispatch.act","should.with","simplifi","sing","state","state*/}).todispatchactions(expectedact","store","store.dispatch(actiona()).then","store.dispatch(fetchdata()).then","store.getact","string","success","support","sure","t","t.end","t.fail","t.pass","t.plan","t.plan(1","tape","test","test('thunk","testactioncr","testing.it","then(done).catch(don","then(t.end","thunk","time","to.dispatch.act","to.dispatchact","to.not.dispatch.act","to.not.dispatchact","todispatch","todispatchact","todispatchactions(act","todispatchactions(testactioncr","todispatchactions({properti","todispatchactionswithst","todispatchactionswithstate(initialst","todispatchactionswithstate(st","todo","tonotdispatchact","tonotdispatchactions(act","tonotdispatchactions(testactioncr","tonotdispatchactions({properti","tonotdispatchactionswithst","tonotdispatchactionswithstate(initialst","tonotdispatchactionswithstate(st","trigger","two","type","types.fetch_todos_request","up","us","usag","var","variant","with.stat","without","withstat","withstate({properti","you'r"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file diff --git a/docs/should.html b/docs/should.html index 39604f4..6c43ae4 100644 --- a/docs/should.html +++ b/docs/should.html @@ -40,7 +40,7 @@ - + @@ -49,11 +49,11 @@
    @@ -173,29 +173,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape @@ -311,7 +341,7 @@

    .withState or with.state

    - + diff --git a/docs/tape.html b/docs/tape.html index a59d39d..88e2af8 100644 --- a/docs/tape.html +++ b/docs/tape.html @@ -47,11 +47,11 @@
    @@ -171,29 +171,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/docs/what_it_does.html b/docs/what_it_does.html index 785cce7..749f2d1 100644 --- a/docs/what_it_does.html +++ b/docs/what_it_does.html @@ -53,7 +53,7 @@ data-chapter-title="What it does" data-filepath="what_it_does.md" data-basepath="." - data-revision="Thu Sep 22 2016 18:44:55 GMT+0200 (CEST)" + data-revision="Wed Jan 18 2017 12:57:27 GMT+0100 (CET)" data-innerlanguage=""> @@ -173,29 +173,59 @@
  • -
  • +
  • - + 3.4. + jasmine + + + +
  • + +
  • + + + + + + + 3.5. + + jest + + + +
  • + +
  • + + + + + + + 3.6. + should
  • -
  • +
  • - 3.5. + 3.7. tape diff --git a/documentation/SUMMARY.md b/documentation/SUMMARY.md index b4aeaf9..c09b407 100644 --- a/documentation/SUMMARY.md +++ b/documentation/SUMMARY.md @@ -8,6 +8,7 @@ * [chai](chai.md) * [expect](expect.md) * [expect.js](expectjs.md) + * [jasmine](jasmine.md) + * [jest](jest.md) * [should](should.md) - * [tape](tape.md) - + * [tape](tape.md) \ No newline at end of file diff --git a/package.json b/package.json index ca65341..00cf7be 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,10 @@ "test:should": "mocha --compilers js:babel-register --reporter spec test/should/*.js", "test:tape": "tape --require babel-register test/tape/*.js", "test": "npm run test:index && npm run test:chai && npm run test:expect && npm run test:expectjs && npm run test:jasmine && npm run test:jest && npm run test:should && npm run test:tape", - "prepublish": "rimraf build && babel src --out-dir build --copy-files" + "copy-resources": "cp README.md ./build && cp LICENSE ./build", + "build": "rimraf build && babel src --out-dir build --copy-files ", + "prepublish": "npm run build && npm run copy-resources", + "docs:build": "cd documentation && npm run build" }, "repository": { "type": "git", @@ -24,9 +27,9 @@ ], "license": "MIT", "bugs": { - "url": "https://github.com/dmitry-zaets/redux-actions-assertions/issues" + "url": "https://github.com/redux-things/redux-actions-assertions/issues" }, - "homepage": "https://github.com/dmitry-zaets/redux-actions-assertions#readme", + "homepage": "https://github.com/redux-things/redux-actions-assertions#readme", "devDependencies": { "babel-cli": "^6.9.0", "babel-preset-es2015": "^6.9.0", diff --git a/src/LICENSE b/src/LICENSE deleted file mode 100644 index 12145d3..0000000 --- a/src/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Dmitry Zaets - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/src/README.md b/src/README.md deleted file mode 100644 index 5b9a80c..0000000 --- a/src/README.md +++ /dev/null @@ -1,174 +0,0 @@ -# redux-actions-assertions -Assertions for redux actions testing. - -This library adds assertions for [redux actions](http://redux.js.org/docs/advanced/AsyncActions.html) testing. -It use [redux-mock-store](https://github.com/arnaudbenard/redux-mock-store) to mock redux store. - -[![build status](https://img.shields.io/travis/redux-things/redux-actions-assertions/master.svg?style=flat-square)](https://travis-ci.org/redux-things/redux-actions-assertions) -[![npm version](https://img.shields.io/npm/v/redux-actions-assertions.svg?style=flat-square)](https://www.npmjs.com/package/redux-actions-assertions) - -## Supported Assertion Frameworks/Libraries: -- [chai](https://redux-things.github.io/redux-actions-assertions/chai.html) -- [expect](https://redux-things.github.io/redux-actions-assertions/expect.html) -- [expect.js](https://redux-things.github.io/redux-actions-assertions/expectjs.html) -- [should](https://redux-things.github.io/redux-actions-assertions/should.html) -- [pure javascript assertion](https://redux-things.github.io/redux-actions-assertions/javascript.html) - -If you have not found assertion framework/library that you are using - please add comment into [this issue](https://github.com/dmitry-zaets/redux-actions-assertions/issues/3). - -## What it does: -- [Allows to avoid retesting nested action creators](#allows-to-avoid-retesting-nested-action-creators); -- [Reduces repetitive code of test methods](#reduces-repetitive-code-of-test-methods); -- [Simplifies initial setup](#simplifies-initial-setup); - -### Allows to avoid retesting nested action creators -It allows to test only actions that need to be tested. - -**Example:** -We have two actions (A, B). Each one makes async http requests. -Action A makes a request and if the result is successful it triggers Action B. -Action B is also used as an independent action. -Action B can be tested separately. -Therefore, we don't need to test it again in Action A. - -Actions: -```javascript -function actionA() { - return dispatch => { - dispatch(actionAStart()); - return api.getA().then(response => { - dispatch(actionAFinish(response)); - dispatch(actionB()); - }).catch(err => { - dispatch(actionAFailure(err)); - }); - }; -} - -function actionB() { - return dispatch => { - dispatch(actionBStart()); - return api.getB().then(response => { - dispatch(actionBFinish(response)); - }).catch(err => { - dispatch(actionBFailure(err)); - }); - }; -} -``` - -Without: -```javascript -const expectedActions = [ - { type: action_a_start }, - { type: action_a_success }, - { type: action_b_start }, // retesting of action B - { type: action_b_success } // retesting of action B]; -const store = mockStore({ todos: [] }); -store.dispatch(actionA()).then(() => { - expect(store.getActions()).toEqual(expectedActions); -}).then(done).catch(done); -``` - -With: -```javascript -expect(actionA()).withState({ todos: [] }).toDispatch([ - { type: action_a_start }, - { type: action_a_success }, - actionB() // just executing tested action -], done); -``` - -### Reduces repetitive code of test methods -It reduces boilerplate of test methods and makes testing fluent. - -Without: -```javascript -const store = mockStore(/* initial state */); -const expectedActions = [ - { type: types.FETCH_TODOS_REQUEST }, - /* All expected triggered action objects */ -]; -store.dispatch(fetchData()).then(() => { - const actions = store.getActions(); - expect(actions).toEqual(expectedActions); -}).then(done).catch(done); -``` - -With: -```javascript -const expectedActions = [ - /*All expected triggered action objects or action creator functions*/ -]; -expect(fetchData()).toDispatchActions(expectedActions, done); -``` - -With using customised store state: -```javascript -expect(fetchData()).withState({/*custom state*/}).toDispatchActions(expectedActions, done); -``` - -### Simplifies initial setup -It provides singe-time global configuration for middlewares and initial store state. - -Without: -```javascript -const middlewares = [thunk]; -const mockStore = configureStore(middlewares); -const store = mockStore({ /*initial store object*}); -``` -With: -```javascript -registerMiddlewares([ thunk ]); -// to set custom initial state -registerInitialStoreState(/*object of function*/); -// to generate initial state of your application -registerInitialStoreState(buildInitialStoreState(/*your root reducer*/)); -``` - -## Installation - -Using [npm](https://www.npmjs.org/): - - $ npm install --save-dev redux-actions-assertions - -### Redux middlewares registration - -```js -// using ES6 modules -import { registerMiddlewares } from 'redux-actions-assertions'; - -// using CommonJS modules -var registerMiddlewares = require('redux-actions-assertions').registerMiddlewares; - -// registration -registerMiddlewares([ - /* Here you need to list your middlewares */ -]); -``` - -### Default initial store state registration - -**By using state object or function:** -```js -// using ES6 modules -import { registerInitialStoreState } from 'redux-actions-assertions'; - -// using CommonJS modules -var registerInitialStoreState = require('redux-actions-assertions').registerInitialStoreState; - -// registration -registerInitialStoreState(/* default initial state object or function */); -``` -**By using your root reducer:** -```js -// using ES6 modules -import { buildInitialStoreState, registerInitialStoreState } from 'redux-actions-assertions'; - -// using CommonJS modules -var reduxActionsAssertions = require('redux-actions-assertions'); -var registerInitialStoreState = reduxActionsAssertions.registerInitialStoreState; - -// registration -registerInitialStoreState(buildInitialStoreState(/* root reducer function */)); -``` diff --git a/src/package.json b/src/package.json index 6e45275..8126c86 100644 --- a/src/package.json +++ b/src/package.json @@ -1,12 +1,12 @@ { "name": "redux-actions-assertions", - "version": "1.2.1", + "version": "1.3.0", "description": "Assertions for redux actions testing", "scripts": { }, "repository": { "type": "git", - "url": "git+https://github.com/dmitry-zaets/redux-actions-assertions.git" + "url": "git+https://github.com/redux-things/redux-actions-assertions/t" }, "authors": [ "Dmitry Zaets", @@ -14,9 +14,9 @@ ], "license": "MIT", "bugs": { - "url": "https://github.com/dmitry-zaets/redux-actions-assertions/issues" + "url": "https://github.com/redux-things/redux-actions-assertions/issues" }, - "homepage": "https://github.com/dmitry-zaets/redux-actions-assertions#readme", + "homepage": "https://github.com/redux-things/redux-actions-assertions#readme", "keywords": [ "redux", "actions",