Skip to content

Commit 13e16e2

Browse files
committed
fix: minor tweak
dependency: none
1 parent 099d747 commit 13e16e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/unit/cis/edge-functions-api.v1.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ describe('EdgeFunctionsApiV1', () => {
233233
});
234234

235235
describe('negative tests', () => {
236-
test('should enforce required parameters', async done => {
236+
test('should enforce required parameters', async () => {
237237
let err;
238238
try {
239239
await edgeFunctionsApiService.updateEdgeFunctionsAction({});
@@ -242,7 +242,6 @@ describe('EdgeFunctionsApiV1', () => {
242242
}
243243

244244
expect(err.message).toMatch(/Missing required parameters/);
245-
done();
246245
});
247246

248247
test('should reject promise when required params are not given', done => {

0 commit comments

Comments
 (0)