Skip to content

Commit 2f80c1f

Browse files
authored
Merge pull request #50 from oslabs-beta/dev
Pushing to main before publishing
2 parents 08f74c3 + 9bb863b commit 2f80c1f

File tree

17 files changed

+674
-31
lines changed

17 files changed

+674
-31
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
/package-lock.json
33
/.vscode-test/
44
/build/
5-
/.DS_Store
5+
/.DS_Store
6+
/coverage/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ To address this challenge, we aim to develop a visualization tool to help develo
2222

2323
## Installation
2424

25-
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.
25+
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.
2626

2727
## Getting Started
2828

29-
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.
29+
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.
3030
<p align="center">
3131
<img width="250" height="450" src="https://github.com/oslabs-beta/React-Labyrinth/assets/127361061/d72b483b-7785-4a5d-9836-9c79ff46e3a3">
3232
</p>
@@ -51,7 +51,7 @@ Check out our medium article (insert hyperlink) for more information about React
5151

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

54-
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.
54+
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.
5555

5656
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.
5757

babel.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

jest.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,12 @@ module.exports = {
1313
vscode: path.join(__dirname, 'src', 'test', 'vscode.js')
1414
},
1515
testMatch: ['**/test/**/*.js', '**/?(*.)+(spec|test).js'],
16-
modulePathIgnorePatterns: ["node_modules"]
16+
modulePathIgnorePatterns: ["node_modules"],
17+
collectCoverage: true,
18+
coverageReporters: [ 'lcov', 'text', 'html'],
19+
collectCoverageFrom: ['./src/**'],
20+
coverageDirectory: 'coverage',
21+
transform: {
22+
"^.+\\.[jt]sx?$": "babel-jest"
23+
},
1724
};

0 commit comments

Comments
 (0)