Skip to content

Commit e802dcb

Browse files
Hristo HristovHristo Hristov
authored andcommitted
fix(cli): fix wc tests error, remove node options
1 parent a684330 commit e802dcb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

packages/cli/templates/angular/ig-ts/projects/empty/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"start": "ng serve",
77
"build": "ng build",
88
"watch": "ng build --watch --configuration development",
9-
"test": "NODE_OPTIONS='--max-old-space-size=6000' node node_modules/@angular/cli/bin/ng test"
9+
"test": "ng test"
1010
},
1111
"private": true,
1212
"dependencies": {

packages/cli/templates/webcomponents/igc-ts/projects/_base/files/src/app/app.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from '@open-wc/testing';
2-
import { App } from './app.js';
2+
import App from './app.js';
33

44
describe('App', () => {
55
it('<app-root> is an instance of App', async () => {

packages/igx-templates/igx-ts-legacy/projects/_base/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"start": "ng serve -o",
77
"build": "ng build",
88
"watch": "ng build --watch --configuration development",
9-
"test": "NODE_OPTIONS='--max-old-space-size=6000' node node_modules/@angular/cli/bin/ng test",
9+
"test": "ng test",
1010
"lint": "ng lint"
1111
},
1212
"private": true,

packages/igx-templates/igx-ts-legacy/projects/side-nav-auth/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"start": "ng serve -o",
77
"build": "ng build",
88
"watch": "ng build --watch --configuration development",
9-
"test": "NODE_OPTIONS='--max-old-space-size=6000' node node_modules/@angular/cli/bin/ng test",
9+
"test": "ng test",
1010
"lint": "ng lint"
1111
},
1212
"private": true,

packages/igx-templates/igx-ts/projects/_base/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"start": "ng serve -o",
77
"build": "ng build",
88
"watch": "ng build --watch --configuration development",
9-
"test": "NODE_OPTIONS='--max-old-space-size=6000' node node_modules/@angular/cli/bin/ng test",
9+
"test": "ng test",
1010
"lint": "ng lint"
1111
},
1212
"private": true,

packages/igx-templates/igx-ts/projects/side-nav-auth/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"start": "ng serve -o",
77
"build": "ng build",
88
"watch": "ng build --watch --configuration development",
9-
"test": "NODE_OPTIONS='--max-old-space-size=6000' node node_modules/@angular/cli/bin/ng test",
9+
"test": "ng test",
1010
"lint": "ng lint"
1111
},
1212
"private": true,

0 commit comments

Comments
 (0)