Skip to content

Commit 17c1a53

Browse files
committed
fix: TT-610 Fix pipeline - CI Time Tracker ui
1 parent b515666 commit 17c1a53

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"build": "ng build --prod",
1010
"test": "ng test --browsers ChromeHeadless",
1111
"test-headless": "ng test --browsers ChromeHeadless",
12-
"ci-test": "ng test --no-watch --no-progress --browsers ChromeHeadless",
12+
"ci-test": "npm run config && ng test --no-watch --no-progress --browsers ChromeHeadless",
1313
"lint": "ng lint",
1414
"e2e": "ng e2e"
1515
},

scripts/setenv.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const { writeFile } = require('fs');
22
require('dotenv').config();
33

44
const pathJs = `./src/environments/keys.ts`
5-
const contentKeys =
5+
const contentKeys =
66
`export const AUTHORITY = '${process.env.AUTHORITY}';
77
export const CLIENT_ID = '${process.env.CLIENT_ID}';
88
export const SCOPES = ['${process.env.SCOPES}'];
@@ -19,7 +19,7 @@ writeFile(pathJs, contentKeys, function (err) {
1919
});
2020

2121
const pathJson = `./src/environments/.keys.json`
22-
const contentKeysJson =
22+
const contentKeysJson =
2323
`{
2424
"authority": "${process.env.AUTHORITY_JSON}",
2525
"client_id": "${process.env.CLIENT_ID_JSON}",

0 commit comments

Comments
 (0)