Skip to content

Commit

Permalink
chore: fix import and add parallel flag back
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed May 30, 2024
1 parent 87dd5d6 commit a6cbd79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
3 changes: 1 addition & 2 deletions test/generators/sfdxGenerator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit a6cbd79

Please sign in to comment.