mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-07-30 07:21:32 -07:00
8 lines
308 B
TypeScript
8 lines
308 B
TypeScript
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);
|
|
});
|