Skip to content

Commit

Permalink
test: fix jasmine spec_files paths after pathing changes (#1741)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Aug 9, 2022
1 parent caa5c25 commit 209947f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jasmine.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"spec_dir": "dist",
"spec_files": [
"client/tests/*_spec.js",
"client/src/tests/*_spec.js",
"common/tests/*_spec.js",
"server/tests/*_spec.js"
"server/src/tests/*_spec.js"
]
}
2 changes: 1 addition & 1 deletion server/src/tests/ngcc_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {takeUntil} from 'rxjs/operators';

import {resolveAndRunNgcc} from '../ngcc';

const PACKAGE_ROOT = resolve(__dirname, '../../..');
const PACKAGE_ROOT = resolve(__dirname, '../../../..');
const WORKSPACE_ROOT = join(PACKAGE_ROOT, 'integration', 'workspace');
const PROJECT = join(WORKSPACE_ROOT, 'projects', 'demo');
const PRE_APF_PROJECT = join(PACKAGE_ROOT, 'integration', 'pre_apf_project');
Expand Down

0 comments on commit 209947f

Please sign in to comment.