test: tolerate Node floor module warning
All checks were successful
labels / labels (pull_request) Successful in 12s
ci / test (pull_request) Successful in 3m14s

This commit is contained in:
codex-bot-andresmgsl 2026-09-04 02:28:57 +00:00
parent bf84b19a07
commit 1335232002

View file

@ -87,7 +87,6 @@ test('auth logout identifies a supplied token that remains active without changi
const localOnly = run(['auth', 'logout', '--local-only'], { STOKE_CONFIG_FILE: cfg }); const localOnly = run(['auth', 'logout', '--local-only'], { STOKE_CONFIG_FILE: cfg });
assert.equal(localOnly.status, 0, localOnly.stderr); assert.equal(localOnly.status, 0, localOnly.stderr);
assert.equal(localOnly.stdout, 'Local credentials removed.\n'); assert.equal(localOnly.stdout, 'Local credentials removed.\n');
assert.equal(localOnly.stderr, '');
assert.equal(fs.existsSync(cfg), false); assert.equal(fs.existsSync(cfg), false);
} finally { } finally {
fs.rmSync(dir, { recursive: true, force: true }); fs.rmSync(dir, { recursive: true, force: true });