From 114ecb2e1c03255bed5efee77ba1d8a71c9944d5 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sat, 19 Oct 2019 23:08:36 +0200 Subject: Sprawdzarka wpisów MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add article checker * Fix config typo --- test/check.js | 11 +++++++++++ test/package.json | 16 ++++++++++++++++ test/validator.sh | 9 +++++++++ 3 files changed, 36 insertions(+) create mode 100644 test/check.js create mode 100644 test/package.json create mode 100755 test/validator.sh (limited to 'test') diff --git a/test/check.js b/test/check.js new file mode 100644 index 0000000..5bae1f5 --- /dev/null +++ b/test/check.js @@ -0,0 +1,11 @@ +import readline from "readline"; +import { parsePost } from "kronikarz/dist/parsePost"; + +const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout +}); + +rl.question("", filePath => { + parsePost(filePath); +}); diff --git a/test/package.json b/test/package.json new file mode 100644 index 0000000..f78dd9d --- /dev/null +++ b/test/package.json @@ -0,0 +1,16 @@ +{ + "name": "tester", + "version": "1.0.0", + "description": "Checks if articles are write in right way", + "main": "check.js", + "dependencies": { + "esm": "^3.2.25", + "kronikarz": "^1.0.0" + }, + "scripts": { + "test": "./validator.sh" + }, + "keywords": [], + "author": "Patryk Niedźwiedziński", + "license": "ISC" +} diff --git a/test/validator.sh b/test/validator.sh new file mode 100755 index 0000000..b7e738c --- /dev/null +++ b/test/validator.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +NEW_FILES=`git diff --name-only HEAD master | egrep 'wpisy/*'` + +for file in $NEW_FILES; do + echo "../$file" > path.in + + node -r esm check.js < path.in +done \ No newline at end of file -- cgit 1.4.1