Skip to content

Commit

Permalink
Use const for test constants, just to be safe
Browse files Browse the repository at this point in the history
  • Loading branch information
raphinesse committed Jun 3, 2018
1 parent c0e0eac commit ebfc33c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/create.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ var CordovaError = require('cordova-common').CordovaError;
var ConfigParser = require('cordova-common').ConfigParser;
const {tmpDir, createWith, createWithMockFetch, expectRejection} = require('./helpers');

var appName = 'TestBase';
var appId = 'org.testing';
var appVersion = '1.0.0';
var project = path.join(tmpDir, appName);
const appName = 'TestBase';
const appId = 'org.testing';
const appVersion = '1.0.0';
const project = path.join(tmpDir, appName);

// Setup and teardown test dirs
beforeEach(function () {
Expand Down

0 comments on commit ebfc33c

Please sign in to comment.