mirror of
https://github.com/sydev/decrypt-dlc-cli
synced 2026-01-03 08:18:02 +00:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
import test from 'ava';
|
|
import execa from 'execa';
|
|
|
|
test('decrypt', async t => {
|
|
const dlc = await execa('bin/decrypt-dlc', ['test/test.dlc', '-o', 'test/urls.txt']);
|
|
t.regex(dlc.stdout, /Successfully/);
|
|
});
|