Skip to content

Commit

Permalink
use const for imports
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Nov 30, 2016
1 parent 481fc73 commit dbce915
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/karma/expectation-chrome-canary.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-chrome.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-edge.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-firefox-developer.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-firefox.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-opera.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down
2 changes: 1 addition & 1 deletion config/karma/expectation-safari.js
@@ -1,4 +1,4 @@
var common = require('./expectation.js');
const common = require('./expectation.js');

module.exports = (config) => {

Expand Down

0 comments on commit dbce915

Please sign in to comment.