Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: unskip Int64 tests with ieee754compatible flag enabled #180

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/resources/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"body_parser": {
"limit": "110KB"
}
},
"features": {
"ieee754compatible": true
}
}
}
4 changes: 2 additions & 2 deletions test/tests/types.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down Expand Up @@ -854,7 +854,7 @@ describe('graphql - types parsing and validation', () => {
})
})

xdescribe('cds.Integer64', () => {
describe('cds.Integer64', () => {
const field = 'myInteger64'

describe('input literal', () => {
Expand Down
Loading