From 24755101b2cfddc8583e6fa3ebc846af5221e4f4 Mon Sep 17 00:00:00 2001 From: freearhey Date: Sat, 2 Nov 2019 14:10:57 +0300 Subject: [PATCH] Move test script to /scripts --- package.json | 2 +- test/index.js => scripts/test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename test/index.js => scripts/test.js (97%) diff --git a/package.json b/package.json index cb70ef147a..522ce4eb26 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "iptv", "scripts": { - "test": "node test/index.js", + "test": "node scripts/test.js", "generate": "node scripts/generate.js", "format": "node scripts/format.js", "update-readme": "node scripts/update-readme.js" diff --git a/test/index.js b/scripts/test.js similarity index 97% rename from test/index.js rename to scripts/test.js index 4bc9cf606f..e90e321d83 100644 --- a/test/index.js +++ b/scripts/test.js @@ -1,6 +1,6 @@ process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0 -const helper = require('../scripts/helper') +const helper = require('./helper') const ffmpeg = require('fluent-ffmpeg') const verbose = process.env.npm_config_debug || false