Skip to content

Commit

Permalink
Merge branch 'master4' of https://github.com/Shubh942/GDB-UI into mas…
Browse files Browse the repository at this point in the history
…ter4
  • Loading branch information
Shubh942 committed Jun 30, 2024
2 parents 1fa84bf + 9e3d8cb commit fb170f0
Show file tree
Hide file tree
Showing 14 changed files with 351 additions and 2,511 deletions.
2,568 changes: 341 additions & 2,227 deletions webapp/package-lock.json

Large diffs are not rendered by default.

13 changes: 3 additions & 10 deletions webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage"
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
Expand All @@ -21,19 +18,15 @@
"terminal-in-react": "^4.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^24.1.0",
"jsdom": "^20.0.0",
"vite": "^5.2.0",
"vite-plugin-terminal": "^1.2.0",
"vitest": "^1.6.0"
"vite-plugin-terminal": "^1.2.0"
}
}
79 changes: 0 additions & 79 deletions webapp/src/__tests__/App.test.jsx

This file was deleted.

4 changes: 2 additions & 2 deletions webapp/src/components/Breakpoint/Breakpoint.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const Breakpoint = () => {
<div className="add-breakpoint">Add Breakpoint</div>
<div className="lower-breakpoint">
<div className="line-breakpoint">
<label>Line</label>
<input type="text" name="" id="breakpoint-line" />
<a>Line</a>
<input type="text" name="" id="" />
</div>
<div className="line-breakpoint">
<a>Function</a>
Expand Down
29 changes: 0 additions & 29 deletions webapp/src/components/Breakpoint/__tests__/Breakpoint.test.jsx

This file was deleted.

26 changes: 0 additions & 26 deletions webapp/src/components/DebugHeader/__tests__/DebugHeader.test.jsx

This file was deleted.

14 changes: 0 additions & 14 deletions webapp/src/components/Footer/__tests__/Footer.test.jsx

This file was deleted.

11 changes: 0 additions & 11 deletions webapp/src/components/Functions/__tests__/Functions.test.jsx

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions webapp/src/components/Stack/__tests__/Stack.test.jsx

This file was deleted.

16 changes: 0 additions & 16 deletions webapp/src/components/StackBottom/__tests__/StackBottom.test.jsx

This file was deleted.

12 changes: 0 additions & 12 deletions webapp/src/setupTests.js

This file was deleted.

8 changes: 5 additions & 3 deletions webapp/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ export default defineConfig({
globals: true,
environment: "jsdom",
setupFiles: "./src/setupTests.js",
test: {
include: ["src/**/*.{test,spec}.{js,ts}"],
},
include: ["src/**/*.{test,spec}.{js,ts}"], // Moved out of the nested test object
},
server: {
host: "0.0.0.0",
port: 5173,
},
server: {
host: "0.0.0.0",
Expand Down

0 comments on commit fb170f0

Please sign in to comment.