Skip to content

Commit 53bbce0

Browse files
authored
fix(tests): use unique domain for status page e2e test to prevent conflicts (#1287)
1 parent 16203e0 commit 53bbce0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/cli/e2e/__tests__/fixtures/deploy-project/status-page.check.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* eslint-disable no-new */
22

33
import { StatusPage, StatusPageService } from 'checkly/constructs'
4+
import { v4 as uuidv4 } from 'uuid'
45

56
export const fooService = new StatusPageService('foo-service', {
67
name: 'Foo',
@@ -12,7 +13,7 @@ export const barService = new StatusPageService('bar-service', {
1213

1314
new StatusPage('test-page-1', {
1415
name: 'Test Status Page 1',
15-
url: 'checkly-internal-test-status-page-18671',
16+
url: `cli-e2e-test-1-${uuidv4()}`,
1617
cards: [{
1718
name: 'Card 1',
1819
services: [

0 commit comments

Comments
 (0)