Skip to content

Commit 4e54494

Browse files
authored
test: enlargen timeframe for complex integration tests (#65)
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent cbf2c19 commit 4e54494

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

tests/integration/JsonNormalize.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ const {
3333
Spec: { Spec1dot2, Spec1dot3, Spec1dot4 }
3434
} = require('../../')
3535

36-
describe('JSON normalize', () => {
36+
describe('JSON normalize', function () {
37+
this.timeout(60000);
38+
3739
[
3840
Spec1dot2,
3941
Spec1dot3,

tests/integration/JsonSerialize.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ const {
3434
Spec: { Spec1dot2, Spec1dot3, Spec1dot4 }
3535
} = require('../../')
3636

37-
describe('JSON serialize', () => {
37+
describe('JSON serialize', function () {
38+
this.timeout(60000);
39+
3840
[
3941
Spec1dot2,
4042
Spec1dot3,

tests/integration/XmlNormalize.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ const {
3333
Spec: { Spec1dot2, Spec1dot3, Spec1dot4 }
3434
} = require('../../')
3535

36-
describe('XML normalize', () => {
36+
describe('XML normalize', function () {
37+
this.timeout(60000);
38+
3739
[
3840
Spec1dot2,
3941
Spec1dot3,

tests/integration/XmlSerialize.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ const {
3434
Spec: { Spec1dot2, Spec1dot3, Spec1dot4 }
3535
} = require('../../')
3636

37-
describe('XML serialize', () => {
37+
describe('XML serialize', function () {
38+
this.timeout(60000);
39+
3840
[
3941
Spec1dot2,
4042
Spec1dot3,

0 commit comments

Comments
 (0)