This commit is contained in:
2020-04-09 09:14:54 +02:00
parent 89a861a2dd
commit 7a9e12e62d
8 changed files with 47 additions and 17 deletions

17
test/.eslintrc.js Normal file
View File

@ -0,0 +1,17 @@
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of Requestor which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020
*/
module.exports = {
env: {
commonjs: true,
es6: true,
node: true
},
extends: [
'@scode/eslint-config-ts'
]
}

5
test/main.ts Normal file
View File

@ -0,0 +1,5 @@
import test from 'ava';
test ('testing', (t) => {
t.is (true, true);
});