mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-07-31 19:21:33 -07:00
refactor(main): split main.ts into focused runtime modules (#123)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import assert from 'node:assert/strict';
|
||||
import test from 'node:test';
|
||||
import { getPasswordStoreArg } from './password-store-args';
|
||||
|
||||
test('getPasswordStoreArg ignores split-form whitespace-only values', () => {
|
||||
assert.equal(getPasswordStoreArg(['SubMiner.AppImage', '--password-store', ' ']), null);
|
||||
});
|
||||
Reference in New Issue
Block a user