diff --git a/package.json b/package.json index 16a85df5..05b70a1a 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,7 @@ "compile": "tsc -b", "lint": "eslint -c .eslintrc.json --ext .ts ./src ./test", "lint:fix": "eslint -c .eslintrc.json --ext .ts ./src ./test --fix", - "test": "nyc --exclude src/i18n/localization.ts --extension .ts mocha --forbid-only \"test/**/*.test.ts\"", + "test": "nyc --exclude src/i18n/localization.ts --extension .ts mocha --parallel --forbid-only \"test/**/*.test.ts\"", "prepare": "husky install" }, "config": { diff --git a/test/generators/sfdxGenerator.test.ts b/test/generators/sfdxGenerator.test.ts index f26683c6..7128cd3e 100644 --- a/test/generators/sfdxGenerator.test.ts +++ b/test/generators/sfdxGenerator.test.ts @@ -7,9 +7,8 @@ import * as path from 'path'; import { assert, match, stub } from 'sinon'; -import { TemplateOptions } from '../../'; +import { TemplateOptions, TemplateService } from '../../src'; import { SfdxGenerator } from '../../src/generators/sfdxGenerator'; -import { TemplateService } from '../../src'; import * as YeomanEnvironment from 'yeoman-environment'; describe('SfdxGenerator', () => {