Skip to content

Commit f07ec56

Browse files
committed
spelling: existence
1 parent 89932f0 commit f07ec56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ExternalModule.unittest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ describe("ExternalModule", function() {
204204
result.should.eql(expected);
205205
});
206206
describe("given an optinal check is set", function() {
207-
it("ads a check for the existance of the variable before looking it up", function() {
207+
it("ads a check for the existence of the variable before looking it up", function() {
208208
// set up
209209
const id = "someId";
210210
const optional = true;
@@ -237,7 +237,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE_someId__;`;
237237
result.should.eql(expected);
238238
});
239239
describe("given an optinal check is requested", function() {
240-
it("checks for the existance of the request setting it", function() {
240+
it("checks for the existence of the request setting it", function() {
241241
// set up
242242
const optional = true;
243243
const expected = `if(typeof some/request === 'undefined') {var e = new Error("Cannot find module \\"some/request\\""); e.code = 'MODULE_NOT_FOUND'; throw e;}

0 commit comments

Comments
 (0)