From e23c93468d4d061eb0b70e21f8a641099957e7e7 Mon Sep 17 00:00:00 2001 From: Zachary Hueras Date: Sun, 28 Apr 2024 04:03:01 -0400 Subject: [PATCH] fix(decorator-mui): disable empty datetime test Using a snapshot here fails because the timestamp doesn't match. A different approach is warranted, but doing this in the meantime. --- packages/decorator-mui/src/__tests__/mui.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/decorator-mui/src/__tests__/mui.test.js b/packages/decorator-mui/src/__tests__/mui.test.js index 8d4112b..7edde12 100644 --- a/packages/decorator-mui/src/__tests__/mui.test.js +++ b/packages/decorator-mui/src/__tests__/mui.test.js @@ -16,7 +16,7 @@ describe('Material UI', function () { ['root number', { type: 'number' }], ['root integer', { type: 'integer' }], ['root date', { type: 'string', format: 'date' }], - ['root date-time', { type: 'string', format: 'date-time' }], + // ['root date-time', { type: 'string', format: 'date-time' }], ['root enumeration', { type: 'string', enum: ['a', 'b', 'c'] }], [ 'root multiselect',