Skip to content

Commit

Permalink
Add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
OldSneerJaw committed Mar 21, 2018
1 parent 681886a commit 666a722
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/my-example-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var testFixtureMaker = require('couchster').testFixtureMaker;

describe('my example document definitions', function() {
// Need to initialize the test fixture module the document definitions under test before every test case
// Need to initialize the test fixture module from the document definitions under test before every test case
var testFixture;
beforeEach(function() {
testFixture = testFixtureMaker.initFromDocumentDefinitions('src/my-example-doc-definitions.js');
Expand All @@ -13,7 +13,7 @@ describe('my example document definitions', function() {
_id: 'my-document-id',
type: 'exampleDoc',
foo: 'bar'
}
};

testFixture.verifyDocumentCreated(doc, [ 'write-' + doc._id ]);
});
Expand All @@ -23,7 +23,7 @@ describe('my example document definitions', function() {
_id: 'my-document-id',
type: 'exampleDoc',
foo: 'invalid'
}
};

testFixture.verifyDocumentNotCreated(
doc,
Expand Down

0 comments on commit 666a722

Please sign in to comment.