Skip to content

Commit

Permalink
test: use await in test-debugger-invalid-json
Browse files Browse the repository at this point in the history
Changes the promises to async/await in
test/parallel/test-debugger-invalid-json.

PR-URL: #44689
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
anjanakvellore authored and danielleadams committed Oct 5, 2022
1 parent d2f3616 commit f4f08be
Showing 1 changed file with 18 additions and 14 deletions.
@@ -1,11 +1,11 @@
'use strict';
const common = require('../common');
const startCLI = require('../common/debugger');
import { skipIfInspectorDisabled, mustCall } from '../common/index.mjs';

common.skipIfInspectorDisabled();
skipIfInspectorDisabled();

const assert = require('assert');
const http = require('http');
import startCLI from '../common/debugger.js';

import assert from 'assert';
import http from 'http';

const host = '127.0.0.1';

Expand All @@ -14,14 +14,16 @@ const host = '127.0.0.1';
res.statusCode = 400;
res.end('Bad Request');
});
server.listen(0, common.mustCall(() => {

server.listen(0, mustCall(async () => {
const port = server.address().port;
const cli = startCLI([`${host}:${port}`]);
cli.quit().then(common.mustCall((code) => {
try {
const code = await cli.quit();
assert.strictEqual(code, 1);
})).finally(() => {
} finally {
server.close();
});
}
}));
}

Expand All @@ -30,13 +32,15 @@ const host = '127.0.0.1';
res.statusCode = 200;
res.end('some data that is invalid json');
});
server.listen(0, host, common.mustCall(() => {

server.listen(0, host, mustCall(async () => {
const port = server.address().port;
const cli = startCLI([`${host}:${port}`]);
cli.quit().then(common.mustCall((code) => {
try {
const code = await cli.quit();
assert.strictEqual(code, 1);
})).finally(() => {
} finally {
server.close();
});
}
}));
}

0 comments on commit f4f08be

Please sign in to comment.