Skip to content

Commit

Permalink
🐛 adds a 'use strict' pragma on top of some specs, so node 4 doesn't …
Browse files Browse the repository at this point in the history
…flag an error
  • Loading branch information
sverweij committed Dec 4, 2016
1 parent 7663c07 commit 33b55ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/extract/extractor-composite.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

const chai = require('chai');
const expect = chai.expect;
const extractor = require('../../src/extract');
Expand Down
2 changes: 2 additions & 0 deletions test/extract/extractor.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

const expect = require('chai').expect;
const extractor = require('../../src/extract/extractor');
const cjsFixtures = require('../extractor-fixtures/cjs.json');
Expand Down

0 comments on commit 33b55ac

Please sign in to comment.