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 dd9d947 commit 3216cbeCopy full SHA for 3216cbe
1 file changed
smoke-tests/scenarios/node-test.ts
@@ -5,8 +5,6 @@ import * as QUnit from 'qunit';
5
const { module: Qmodule, test } = QUnit;
6
QUnit.config.testTimeout = 120_000;
7
8
-const runNodeImportCommand = 'pnpm test:node';
9
-
10
function nodeTests(scenarios: Scenarios) {
11
scenarios
12
.map('node-tests', (_project) => {})
@@ -19,7 +17,7 @@ function nodeTests(scenarios: Scenarios) {
19
17
});
20
18
21
test('node esm imports', async function (assert) {
22
- let result = await app.execute(runNodeImportCommand);
+ let result = await app.execute(`pnpm test:node`);
23
assert.equal(result.exitCode, 0, result.output);
24
25
0 commit comments