(Initial) Commit

This commit is contained in:
Dominik Winter
2016-12-01 15:03:10 +01:00
commit 9af1ab2380
6 changed files with 2861 additions and 0 deletions

7
test/test.js Normal file
View File

@@ -0,0 +1,7 @@
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/);
});