From 802c2b227d63ef25269af30fd94fe43b59bba3cb Mon Sep 17 00:00:00 2001 From: Florent Biville Date: Wed, 15 Feb 2023 15:52:02 +0100 Subject: [PATCH] Get rid of unmaintained file --- TOOLS.md | 55 ------------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 TOOLS.md diff --git a/TOOLS.md b/TOOLS.md deleted file mode 100644 index 25748b559..000000000 --- a/TOOLS.md +++ /dev/null @@ -1,55 +0,0 @@ -# List of tools used throughout the project - -### npm - -Used for dependency management - -#### Common commands - -`NEOCTRL_ARGS="-e 4.1" npm test` - -`NEOCTRL_ARGS="-e 4.1" npm run start-neo4j` - -`NEOCTRL_ARGS="-e 4.1" npm run stop-neo4j` - -### gulp - -Used for build system - -The following commands run tests directly from the source tree compared to `npm test` which runs them in a sandboxed environment. - -`NEOCTRL_ARGS="-e 4.1" gulp test-nodejs-unit` - -`NEOCTRL_ARGS="-e 4.1" gulp test-nodejs-integration` - -`NEOCTRL_ARGS="-e 4.1" gulp test-nodejs-stub` - -### jasmine - -Used as the testing and assertion framework - -`jasmine --filter="#unit Test"` for more fine-grained test filtering. This only applies to node environment tests. - -### karma - -Used for running tests in real browsers - -`gulp test-browser` - -### istanbul & nyc - -Used for code coverage - -`nyc jasmine --filter="#unit"` cover unit tests - -### eslint - -For linting - -### prettier-eslint - -For code styling - -### husky - -For github pre-commit hooks for code styling