From 9e2aac0696cb13a00d958ce505fb6ee1acc26eb5 Mon Sep 17 00:00:00 2001 From: d98762625 Date: Wed, 20 Mar 2019 16:34:20 +0000 Subject: [PATCH] update tests file name and linting --- src/node/File.mjs | 1 - tests/node/index.mjs | 2 +- tests/node/tests/{ops.mjs => operations.mjs} | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename tests/node/tests/{ops.mjs => operations.mjs} (100%) diff --git a/src/node/File.mjs b/src/node/File.mjs index 16ca4453..6e3451fe 100644 --- a/src/node/File.mjs +++ b/src/node/File.mjs @@ -4,7 +4,6 @@ * @license Apache-2.0 */ -import mime from "mime"; import { detectFileType } from "../core/lib/FileType"; diff --git a/tests/node/index.mjs b/tests/node/index.mjs index c78a2d9c..df8b8bd1 100644 --- a/tests/node/index.mjs +++ b/tests/node/index.mjs @@ -29,7 +29,7 @@ global.ENVIRONMENT_IS_WEB = function() { import TestRegister from "../lib/TestRegister"; import "./tests/nodeApi"; -import "./tests/ops"; +import "./tests/operations"; import "./tests/File"; const testStatus = { diff --git a/tests/node/tests/ops.mjs b/tests/node/tests/operations.mjs similarity index 100% rename from tests/node/tests/ops.mjs rename to tests/node/tests/operations.mjs