We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c956f29 commit 6a34f03Copy full SHA for 6a34f03
test/unit/bin/helpers/zipUpload.js
@@ -110,7 +110,7 @@ describe("zipUpload", () => {
110
}
111
return uploadSuitsrewire(bsConfig, filePath, opts)
112
.then((data) => {
113
- chai.assert.deepEqual(data, {});
+ chai.assert.hasAllKeys(data, ["time"]);
114
})
115
.catch((_error) => {
116
chai.assert.fail("Promise error");
@@ -135,7 +135,7 @@ describe("zipUpload", () => {
135
136
137
138
- chai.assert.deepEqual(data, {zip_url: 'zip_url'});
+ chai.assert.hasAllKeys(data, ["zip_url", "time"]);
139
140
141
0 commit comments