Skip to content

Commit 3216cbe

Browse files
committed
Simplify
1 parent dd9d947 commit 3216cbe

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

smoke-tests/scenarios/node-test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import * as QUnit from 'qunit';
55
const { module: Qmodule, test } = QUnit;
66
QUnit.config.testTimeout = 120_000;
77

8-
const runNodeImportCommand = 'pnpm test:node';
9-
108
function nodeTests(scenarios: Scenarios) {
119
scenarios
1210
.map('node-tests', (_project) => {})
@@ -19,7 +17,7 @@ function nodeTests(scenarios: Scenarios) {
1917
});
2018

2119
test('node esm imports', async function (assert) {
22-
let result = await app.execute(runNodeImportCommand);
20+
let result = await app.execute(`pnpm test:node`);
2321
assert.equal(result.exitCode, 0, result.output);
2422
});
2523
});

0 commit comments

Comments
 (0)