lint errors and test command update

This commit is contained in:
d98762625 2020-05-22 17:45:04 +01:00
parent fb3622b703
commit 56f9410dad
2 changed files with 3 additions and 3 deletions

View file

@ -163,7 +163,7 @@
"start": "grunt dev", "start": "grunt dev",
"build": "grunt prod", "build": "grunt prod",
"repl": "node --experimental-modules --experimental-json-modules --experimental-specifier-resolution=node --no-warnings ./src/node/repl.mjs", "repl": "node --experimental-modules --experimental-json-modules --experimental-specifier-resolution=node --no-warnings ./src/node/repl.mjs",
"test": "grunt configTests && node --experimental-modules --no-warnings --no-deprecation tests/node/index.mjs && node --experimental-modules --no-warnings --no-deprecation tests/operations/index.mjs", "test": "grunt configTests && node --experimental-modules --experimental-json-modules --experimental-specifier-resolution=node --no-warnings --no-deprecation tests/node/index.mjs && node --experimental-modules --experimental-json-modules --experimental-specifier-resolution=node --no-warnings --no-deprecation tests/operations/index.mjs",
"test-node-consumer": "grunt testnodeconsumer", "test-node-consumer": "grunt testnodeconsumer",
"testui": "grunt testui", "testui": "grunt testui",
"testuidev": "npx nightwatch --env=dev", "testuidev": "npx nightwatch --env=dev",

View file

@ -7,8 +7,8 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
import chef from "./index.mjs" import chef from "./index.mjs";
import repl from "repl" import repl from "repl";
/* eslint no-console: ["off"] */ /* eslint no-console: ["off"] */