aboutsummaryrefslogtreecommitdiffstats
path: root/test/jsUtils.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/jsUtils.test.ts')
-rw-r--r--test/jsUtils.test.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/jsUtils.test.ts b/test/jsUtils.test.ts
index ff7d29d77..73b36d990 100644
--- a/test/jsUtils.test.ts
+++ b/test/jsUtils.test.ts
@@ -78,12 +78,14 @@ describe('jsUtils', () => {
78 }); 78 });
79 79
80 describe('cleanseJSObject', () => { 80 describe('cleanseJSObject', () => {
81 xit('throws error for undefined input', () => { 81 // eslint-disable-next-line jest/no-disabled-tests
82 it.skip('throws error for undefined input', () => {
82 const result = jsUtils.cleanseJSObject(undefined); 83 const result = jsUtils.cleanseJSObject(undefined);
83 expect(result).toThrow(); 84 expect(result).toThrow();
84 }); 85 });
85 86
86 xit('throws error for null input', () => { 87 // eslint-disable-next-line jest/no-disabled-tests
88 it.skip('throws error for null input', () => {
87 const result = jsUtils.cleanseJSObject(null); 89 const result = jsUtils.cleanseJSObject(null);
88 expect(result).toThrow(); 90 expect(result).toThrow();
89 }); 91 });