Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
/package-lock.json
/.vscode-test/
/build/
/.DS_Store
/.DS_Store
/coverage/
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ To address this challenge, we aim to develop a visualization tool to help develo

## Installation

React Labyrinth extension can be installed via the VSCode Marketplace. Start by clicking the Extensions icon in the Activity Bar on the side of VSCode or by using the View: Extensions command (Ctrl+Shift+X). Search for 'react-labyrinth' and click the "install" button. Upon completion, VSCode will have installed the extension and React Labyrinth is ready for use.
React Labyrinth extension can be installed via the VS Code Marketplace. Start by clicking the Extensions icon in the Activity Bar on the side of VS Code or by using the View: Extensions command (Ctrl+Shift+X). Search for 'react-labyrinth' and click the "install" button. Upon completion, VS Code will have installed the extension and React Labyrinth is ready for use.

## Getting Started

Once React Labyrinth is installed in your VSCode, you'll notice its logo added to the Activity Bar on the left-hand side. Simply click on the React Labyrinth logo to launch the extension.
Once React Labyrinth is installed in your VS Code, you'll notice its logo added to the Activity Bar on the left-hand side. Simply click on the React Labyrinth logo to launch the extension.
<p align="center">
<img width="250" height="450" src="https://github.com/oslabs-beta/React-Labyrinth/assets/127361061/d72b483b-7785-4a5d-9836-9c79ff46e3a3">
</p>
Expand All @@ -51,7 +51,7 @@ Check out our medium article (insert hyperlink) for more information about React

Contributions are the cornerstone of the open-source community, fostering an environment of learning, inspiration, and innovation. Your contributions are invaluable and greatly appreciated.

For more details and to begin exploring React Labyrinth, visit its official webpage and LinkedIn page (insert links). These resources offer comprehensive insights into the project, its functionality, key features, and how to get started.
For more details and to begin exploring React Labyrinth, visit its official webpage and [LinkedIn page](https://www.linkedin.com/company/react-labyrinth). These resources offer comprehensive insights into the project, its functionality, key features, and how to get started.

Furthermore, you can access the project's source code, documentation, and issue tracker on GitHub. Feel free to fork the project, implement changes, and submit pull requests to enhance its development.

Expand Down
6 changes: 0 additions & 6 deletions babel.config.js

This file was deleted.

9 changes: 8 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,12 @@ module.exports = {
vscode: path.join(__dirname, 'src', 'test', 'vscode.js')
},
testMatch: ['**/test/**/*.js', '**/?(*.)+(spec|test).js'],
modulePathIgnorePatterns: ["node_modules"]
modulePathIgnorePatterns: ["node_modules"],
collectCoverage: true,
coverageReporters: [ 'lcov', 'text', 'html'],
collectCoverageFrom: ['./src/**'],
coverageDirectory: 'coverage',
transform: {
"^.+\\.[jt]sx?$": "babel-jest"
},
};
Loading