Skip to content

Commit 6022885

Browse files
committed
Increased timeouts
1 parent a01ea56 commit 6022885

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/redfish.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ describe('Redfish', function() {
66
describe('Local File with Network', function() {
77
let metadata;
88
before(function(done) {
9+
this.timeout(10000);
910
csdl.parseMetadataFile(__dirname + '/fixtures/Redfish/Resource_v1.xml', {}, function(error, meta) {
1011
assert.equal(error, null);
1112
metadata = meta;
@@ -69,7 +70,7 @@ describe('Redfish', function() {
6970
describe('Remote File: Resource', function() {
7071
let metadata;
7172
before(function(done) {
72-
this.timeout(5000);
73+
this.timeout(10000);
7374
csdl.parseMetadataUri('https://redfish.dmtf.org/schemas/Resource_v1.xml', {}, function(error, meta) {
7475
assert.equal(error, null);
7576
metadata = meta;
@@ -100,7 +101,7 @@ describe('Redfish', function() {
100101
describe('Remote File: ServiceRoot', function() {
101102
let metadata;
102103
before(function(done) {
103-
this.timeout(5000);
104+
this.timeout(10000);
104105
csdl.parseMetadataUri('https://redfish.dmtf.org/schemas/ServiceRoot_v1.xml', {}, function(error, meta) {
105106
assert.equal(error, null);
106107
metadata = meta;

0 commit comments

Comments
 (0)