We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b85971a commit b5efacdCopy full SHA for b5efacd
1 file changed
test/http.test.ts
@@ -1,5 +1,5 @@
1
import fetch from 'cross-fetch';
2
-import { expect, assert } from 'chai';
+import { expect } from 'chai';
3
4
describe('Ocean Node Root Endpoint', () => {
5
it('should return 200 OK', async () => {
@@ -83,9 +83,7 @@ describe('Direct Command Endpoint', () => {
83
'Content-Type': 'application/json'
84
}
85
});
86
- const responseBody = await response.text();
87
88
expect(response.status).to.equal(400);
89
- assert(responseBody === "Missing signature")
90
91
-});
+});
0 commit comments