Skip to content

Commit

Permalink
Remove backticks from ui_framework_test task.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Mar 28, 2017
1 parent 322a968 commit 2187260
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tasks/ui_framework_test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const jest = require(`jest`);
const path = require(`path`);
const jest = require('jest');
const path = require('path');

const rootDir = `ui_framework`;
const resolve = relativePath => path.resolve(__dirname, `..`, ``, relativePath);
const rootDir = 'ui_framework';
const resolve = relativePath => path.resolve(__dirname, '..', '', relativePath);

const config = {
rootDir,
Expand Down Expand Up @@ -31,6 +31,6 @@ const config = {

const argv = process.argv.slice(2);

argv.push(`--config`, JSON.stringify(config));
argv.push('--config', JSON.stringify(config));

jest.run(argv);

0 comments on commit 2187260

Please sign in to comment.