Skip to content

Commit c0017c3

Browse files
authored
chore: skip environment-template tests due to api slowness [DX-267] (#2705)
* chore: skip environment-template tests due to api slowness [DX-267] * chore: remove additional .skip
1 parent fbf8666 commit c0017c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/integration/environment-template-integration.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import type {
1919

2020
type InstallTemplate = () => Promise<EnvironmentTemplateInstallationProps>
2121

22-
describe('Environment template API', () => {
22+
describe.skip('Environment template API', () => {
2323
const client = defaultClient
2424
const orgId = getTestOrganizationId()
2525
const templateDescription = `${baseEnvironmentTemplateDescription} ${generateRandomId()}`
@@ -193,7 +193,7 @@ describe('Environment template API', () => {
193193
expect(validations.items).toHaveLength(0)
194194
})
195195

196-
it.skip('gets installations on an environment for a given environment template', async () => {
196+
it('gets installations on an environment for a given environment template', async () => {
197197
const installation = await installTemplate()
198198
const { items: installations } = await environment.getEnvironmentTemplateInstallations(
199199
installation.sys.template.sys.id
@@ -203,7 +203,7 @@ describe('Environment template API', () => {
203203
expect(installation.sys.id).toBe(installations[0].sys.id)
204204
})
205205

206-
it.skip('gets all installations of an environment template for an environment', async () => {
206+
it('gets all installations of an environment template for an environment', async () => {
207207
const installation = await installTemplate()
208208
const template = await client.getEnvironmentTemplate({
209209
organizationId: orgId,
@@ -215,7 +215,7 @@ describe('Environment template API', () => {
215215
expect(installation.sys.id).toBe(installations[0].sys.id)
216216
})
217217

218-
it.skip('disconnects environment template', async () => {
218+
it('disconnects environment template', async () => {
219219
const installation = await installTemplate()
220220
const template = await client.getEnvironmentTemplate({
221221
organizationId: orgId,

0 commit comments

Comments
 (0)