This commit is contained in:
Alex Dima 2020-04-22 23:50:00 +02:00
Родитель c508484786
Коммит d38e0b8f00
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6E58D7B045760DA0
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -18,7 +18,7 @@
"scripts": {
"watch": "tsc -watch",
"compile": "tsc",
"test": "tape -r ./out/tests/*.test.js",
"test": "tape -r ./out/tests/all.test.js",
"benchmark": "node benchmark/benchmark.js",
"inspect": "node out/tests/inspect.js",
"version": "npm run test && node scripts/release.js",

6
src/tests/all.test.ts Normal file
Просмотреть файл

@ -0,0 +1,6 @@
import './grammar.test';
import './json.test';
import './matcher.test';
import './onig.test';
import './themes.test';
import './tokenization.test';