Skip to content

Commit e00eccc

Browse files
clydindgp1130
authored andcommitted
test: update third-party decorators E2E to use latest package versions
The older versions used (6.x) do not work with newer versions of Angular 10+ due to breaking changes in later majors.
1 parent b90c04d commit e00eccc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/legacy-cli/e2e/tests/misc/third-party-decorators.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { updateJsonFile } from '../../utils/project';
55
export default function () {
66
return updateJsonFile('package.json', packageJson => {
77
// Install ngrx
8-
packageJson['dependencies']['@ngrx/effects'] = '^6.1.0';
9-
packageJson['dependencies']['@ngrx/schematics'] = '^6.1.0';
10-
packageJson['dependencies']['@ngrx/store'] = '^6.1.0';
11-
packageJson['dependencies']['@ngrx/store-devtools'] = '^6.1.0';
8+
packageJson['dependencies']['@ngrx/effects'] = '^9.1.0';
9+
packageJson['dependencies']['@ngrx/schematics'] = '^9.1.0';
10+
packageJson['dependencies']['@ngrx/store'] = '^9.1.0';
11+
packageJson['dependencies']['@ngrx/store-devtools'] = '^9.1.0';
1212
})
1313
.then(() => npm('install'))
1414
// Create an app that uses ngrx decorators and has e2e tests.

0 commit comments

Comments
 (0)