-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactoring: converted to TypeScript. Adjusted the JS/TS linting environment. Also added validation of JavaScript/Typescript code to GitHub workflow. * Added new component: SmartNodeSelector Also added new component to App.js in order to preview and test. Set up Jest testing framework Refactored folder structure and added debug config for tests in VS Code. Implemented fast and smart code to allow for large data sets - Fast data searching algorithm - Smart rendering
- Loading branch information
1 parent
6bf84e5
commit 3ae58e7
Showing
37 changed files
with
11,555 additions
and
3,526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = 'test-file-stub'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module.exports = { | ||
transform: { ".*": "<rootDir>/node_modules/babel-jest" }, | ||
rootDir: ".", | ||
testMatch: ["**/tests/js/**/*.test.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"], | ||
modulePaths: ["/shared/vendor/modules"], | ||
moduleFileExtensions: ["js", "jsx", "ts", "tsx"], | ||
moduleDirectories: [ | ||
'node_modules', | ||
'tests/js/', | ||
], | ||
moduleNameMapper: { | ||
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": | ||
"<rootDir>/__mocks__/fileMock.js", | ||
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js" | ||
}, | ||
transformIgnorePatterns: ["/node_modules/"], | ||
unmockedModulePathPatterns: [ | ||
"<rootDir>/node_modules/react", | ||
"<rootDir>/node_modules/react-dom", | ||
"<rootDir>/node_modules/react-addons-test-utils", | ||
"<rootDir>/EmptyModule.js" | ||
] | ||
} |
Oops, something went wrong.