@@ -19,7 +19,7 @@ import type {
19
19
20
20
type InstallTemplate = ( ) => Promise < EnvironmentTemplateInstallationProps >
21
21
22
- describe ( 'Environment template API' , ( ) => {
22
+ describe . skip ( 'Environment template API' , ( ) => {
23
23
const client = defaultClient
24
24
const orgId = getTestOrganizationId ( )
25
25
const templateDescription = `${ baseEnvironmentTemplateDescription } ${ generateRandomId ( ) } `
@@ -193,7 +193,7 @@ describe('Environment template API', () => {
193
193
expect ( validations . items ) . toHaveLength ( 0 )
194
194
} )
195
195
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 ( ) => {
197
197
const installation = await installTemplate ( )
198
198
const { items : installations } = await environment . getEnvironmentTemplateInstallations (
199
199
installation . sys . template . sys . id
@@ -203,7 +203,7 @@ describe('Environment template API', () => {
203
203
expect ( installation . sys . id ) . toBe ( installations [ 0 ] . sys . id )
204
204
} )
205
205
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 ( ) => {
207
207
const installation = await installTemplate ( )
208
208
const template = await client . getEnvironmentTemplate ( {
209
209
organizationId : orgId ,
@@ -215,7 +215,7 @@ describe('Environment template API', () => {
215
215
expect ( installation . sys . id ) . toBe ( installations [ 0 ] . sys . id )
216
216
} )
217
217
218
- it . skip ( 'disconnects environment template' , async ( ) => {
218
+ it ( 'disconnects environment template' , async ( ) => {
219
219
const installation = await installTemplate ( )
220
220
const template = await client . getEnvironmentTemplate ( {
221
221
organizationId : orgId ,
0 commit comments