From b08988075c33de0a5a4d187931560732cea45bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Thu, 23 Sep 2021 21:14:43 +0200 Subject: [PATCH] fix: correct test verifications --- src/test/e2e/services/environment-service.test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/e2e/services/environment-service.test.ts b/src/test/e2e/services/environment-service.test.ts index 8950f2dd78..2817ced5f6 100644 --- a/src/test/e2e/services/environment-service.test.ts +++ b/src/test/e2e/services/environment-service.test.ts @@ -65,6 +65,8 @@ test('Can connect environment to project', async () => { name: 'test-connection', displayName: '', enabled: false, + sortOrder: 9999, + type: 'production', }, ]); }); @@ -92,6 +94,8 @@ test('Can remove environment from project', async () => { name: 'removal-test', displayName: '', enabled: false, + sortOrder: 9999, + type: 'production', }, ]); });