Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

fix: Update workspace name reg exp and workspace config tags reg exp #452

Merged
merged 4 commits into from
Apr 22, 2021
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
Update unit tests
  • Loading branch information
Tim Nguyen committed Apr 20, 2021
commit b92a990ca65cbf79609f1d2ac464ce72007c0d5d
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,12 @@ describe('EnvTypeService', () => {
value: '${vpcId}',
},
],
tags: [
{
key: 'customTag',
value: '${indexId}',
},
],
};
const envType = {
id: newConfig.id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ describe('EnvTypeService', () => {
const envType = {
id: 'theverybest',
rev: 1,
name: 'stuff',
name: 'stuff with spaces',
desc: 'stuff',
status: 'approved',
};
Expand Down Expand Up @@ -413,7 +413,7 @@ describe('EnvTypeService', () => {
// BUILD
const envType = {
id: 'iwilltravelacrosstheland',
name: 'searchingfarandwide',
name: 'searchingfarandwide with spaces',
product: {
productId: 'each-------tounderstand',
},
Expand Down