Skip to content

Commit

Permalink
Fix test compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
TimvdLippe committed Jun 26, 2018
1 parent 9b20298 commit ba33bba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/web-component-tester/test/unit/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*/
import * as chai from 'chai';
import * as path from 'path';
import {NPMPackage} from 'polyserve';

import * as config from '../../runner/config';
import {Context} from '../../runner/context';
Expand Down Expand Up @@ -88,7 +89,7 @@ describe('config', function() {
const localPackagePath =
path.join(__dirname, '../fixtures/fake-packages/singleton-dep');
const options = <config.Config>{root: localPackagePath};
const npmPackages: config.NPMPackage[] = [
const npmPackages: NPMPackage[] = [
{name: 'dependency', jsEntrypoint: 'index.js'},
{name: 'dependency', jsEntrypoint: 'arbitraryJsFile.js'}
];
Expand All @@ -103,7 +104,7 @@ describe('config', function() {
const localPackagePath =
path.join(__dirname, '../fixtures/fake-packages/duplicated-dep');
const options = <config.Config>{root: localPackagePath};
const npmPackages: config.NPMPackage[] = [
const npmPackages: NPMPackage[] = [
{name: 'dependency', jsEntrypoint: 'index.js'},
{name: 'dependency', jsEntrypoint: 'arbitraryJsFile.js'}
];
Expand Down

0 comments on commit ba33bba

Please sign in to comment.