Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TT-610 Fix pipeline - CI Time Tracker ui
  • Loading branch information
almeida-erick committed Apr 14, 2022
commit 17c1a5335b688040cbe867449c25d4705bc58d61
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": "ng build --prod",
"test": "ng test --browsers ChromeHeadless",
"test-headless": "ng test --browsers ChromeHeadless",
"ci-test": "ng test --no-watch --no-progress --browsers ChromeHeadless",
"ci-test": "npm run config && ng test --no-watch --no-progress --browsers ChromeHeadless",
"lint": "ng lint",
"e2e": "ng e2e"
},
Expand Down
4 changes: 2 additions & 2 deletions scripts/setenv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { writeFile } = require('fs');
require('dotenv').config();

const pathJs = `./src/environments/keys.ts`
const contentKeys =
const contentKeys =
`export const AUTHORITY = '${process.env.AUTHORITY}';
export const CLIENT_ID = '${process.env.CLIENT_ID}';
export const SCOPES = ['${process.env.SCOPES}'];
Expand All @@ -19,7 +19,7 @@ writeFile(pathJs, contentKeys, function (err) {
});

const pathJson = `./src/environments/.keys.json`
const contentKeysJson =
const contentKeysJson =
`{
"authority": "${process.env.AUTHORITY_JSON}",
"client_id": "${process.env.CLIENT_ID_JSON}",
Expand Down