Skip to content

Commit 31e81a3

Browse files
stainless-app[bot]meorphis
authored andcommitted
feat(dlp): skip tests for entries update due to HTTP 422 in prism (#2297)
1 parent 6930665 commit 31e81a3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/api-resources/zero-trust/dlp/entries.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ describe('resource entries', () => {
3737
});
3838
});
3939

40-
test('update: only required params', async () => {
40+
// TODO: investigate broken test
41+
test.skip('update: only required params', async () => {
4142
const responsePromise = client.zeroTrust.dlp.entries.update('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', {
4243
account_id: 'account_id',
4344
name: 'name',
@@ -53,7 +54,8 @@ describe('resource entries', () => {
5354
expect(dataAndResponse.response).toBe(rawResponse);
5455
});
5556

56-
test('update: required and optional params', async () => {
57+
// TODO: investigate broken test
58+
test.skip('update: required and optional params', async () => {
5759
const response = await client.zeroTrust.dlp.entries.update('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', {
5860
account_id: 'account_id',
5961
name: 'name',

0 commit comments

Comments
 (0)