Files
decrypt-dlc-cli/test/test.js
Dominik Winter 9af1ab2380 (Initial) Commit
2016-12-01 15:03:10 +01:00

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/);
});