Skip to content

Commit 1c5f207

Browse files
authored
test: unskip Int64 tests with ieee754compatible flag enabled (#180)
1 parent b659df8 commit 1c5f207

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

test/resources/types/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
"body_parser": {
1111
"limit": "110KB"
1212
}
13+
},
14+
"features": {
15+
"ieee754compatible": true
1316
}
1417
}
1518
}

test/tests/types.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ describe('graphql - types parsing and validation', () => {
803803
})
804804

805805
// Note: maps to same type as cds.Integer64
806-
xdescribe('cds.Int64', () => {
806+
describe('cds.Int64', () => {
807807
const field = 'myInt64'
808808

809809
test('cds.Int64 is correctly parsed from input literal int value', async () => {
@@ -854,7 +854,7 @@ describe('graphql - types parsing and validation', () => {
854854
})
855855
})
856856

857-
xdescribe('cds.Integer64', () => {
857+
describe('cds.Integer64', () => {
858858
const field = 'myInteger64'
859859

860860
describe('input literal', () => {

0 commit comments

Comments
 (0)