feature: cloudcmd: @iocmd/wait v2.1.0

This commit is contained in:
coderiaser 2025-07-02 21:17:14 +03:00
parent 5f0391fc44
commit 2eb3dc6692
2 changed files with 1 additions and 3 deletions

View file

@ -156,6 +156,7 @@
"@cloudcmd/modal": "^3.0.0", "@cloudcmd/modal": "^3.0.0",
"@cloudcmd/olark": "^3.0.2", "@cloudcmd/olark": "^3.0.2",
"@cloudcmd/stub": "^4.0.1", "@cloudcmd/stub": "^4.0.1",
"@iocmd/wait": "^2.1.0",
"@putout/plugin-cloudcmd": "^4.0.0", "@putout/plugin-cloudcmd": "^4.0.0",
"@types/node-fetch": "^2.6.11", "@types/node-fetch": "^2.6.11",
"auto-globals": "^4.0.0", "auto-globals": "^4.0.0",

View file

@ -3,7 +3,6 @@ import {fileURLToPath} from 'node:url';
import {readFileSync} from 'node:fs'; import {readFileSync} from 'node:fs';
import {test, stub} from 'supertape'; import {test, stub} from 'supertape';
import serveOnce from 'serve-once'; import serveOnce from 'serve-once';
import threadIt from 'thread-it';
import userMenu from './user-menu.mjs'; import userMenu from './user-menu.mjs';
const __filename = fileURLToPath(import.meta.url); const __filename = fileURLToPath(import.meta.url);
@ -67,8 +66,6 @@ test('cloudcmd: user menu: io.cp', async (t) => {
options, options,
}); });
threadIt.terminate();
t.equal(body, fixtureCopyFix); t.equal(body, fixtureCopyFix);
t.end(); t.end();
}); });