From 0207c781ddef471518d2c37432defb6745965bb3 Mon Sep 17 00:00:00 2001 From: JeroenVinke Date: Tue, 28 Mar 2017 22:52:07 +0200 Subject: [PATCH] fix(test): resolve join of undefined error fixes https://github.com/aurelia/cli/issues/569 --- lib/resources/tasks/test.js | 2 +- lib/resources/tasks/test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/resources/tasks/test.js b/lib/resources/tasks/test.js index 14e2458b3..263dd5c7d 100644 --- a/lib/resources/tasks/test.js +++ b/lib/resources/tasks/test.js @@ -3,7 +3,7 @@ import {Server as Karma} from 'karma'; import {CLIOptions} from 'aurelia-cli'; import build from './build'; import {watch} from './run'; -import path from 'path'; +import * as path from 'path'; function log(message) { console.log(message); //eslint-disable-line no-console diff --git a/lib/resources/tasks/test.ts b/lib/resources/tasks/test.ts index 260dc7925..7eff91a2a 100644 --- a/lib/resources/tasks/test.ts +++ b/lib/resources/tasks/test.ts @@ -3,7 +3,7 @@ import {Server as Karma} from 'karma'; import {CLIOptions} from 'aurelia-cli'; import build from './build'; import {watch} from './run'; -import path from 'path'; +import * as path from 'path'; function log(message) { console.log(message); //eslint-disable-line no-console