From 1c5f2079d540bf601c442c8d79888bd0a03e697a Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Tue, 30 Jul 2024 14:10:26 +0200 Subject: [PATCH] test: unskip `Int64` tests with `ieee754compatible` flag enabled (#180) --- test/resources/types/package.json | 3 +++ test/tests/types.test.js | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/test/resources/types/package.json b/test/resources/types/package.json index 5a74c9a..f3d5691 100644 --- a/test/resources/types/package.json +++ b/test/resources/types/package.json @@ -10,6 +10,9 @@ "body_parser": { "limit": "110KB" } + }, + "features": { + "ieee754compatible": true } } } \ No newline at end of file diff --git a/test/tests/types.test.js b/test/tests/types.test.js index fe81ccf..5ccda6b 100644 --- a/test/tests/types.test.js +++ b/test/tests/types.test.js @@ -803,7 +803,7 @@ describe('graphql - types parsing and validation', () => { }) // Note: maps to same type as cds.Integer64 - xdescribe('cds.Int64', () => { + describe('cds.Int64', () => { const field = 'myInt64' test('cds.Int64 is correctly parsed from input literal int value', async () => { @@ -854,7 +854,7 @@ describe('graphql - types parsing and validation', () => { }) }) - xdescribe('cds.Integer64', () => { + describe('cds.Integer64', () => { const field = 'myInteger64' describe('input literal', () => {