Skip to content

Commit

Permalink
Merge pull request #27 from oslabs-beta/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ay7991 committed Feb 21, 2024
2 parents 902f70a + 27f0446 commit 017dd01
Show file tree
Hide file tree
Showing 26 changed files with 1,171 additions and 51 deletions.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
transformIgnorePatterns: ['/node_modules/(?!d3|d3-array|internmap|delaunator|robust-predicates)'],
testRegex: '(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$',
moduleFileExtensions: ['ts', 'tsx', 'js'],
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
setupFilesAfterEnv: ['@testing-library/jest-dom'],
testEnvironment: 'jsdom',
moduleNameMapper: {
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,13 @@
"eslint-plugin-testing-library": "^6.2.0",
"html-webpack-plugin": "^5.5.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jsdom": "^23.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
Expand Down Expand Up @@ -177,6 +179,7 @@
"html-react-parser": "^5.0.11",
"intro.js": "^7.2.0",
"intro.js-react": "^1.0.0",
"jest-environment-jsdom": "^29.7.0",
"jsondiffpatch": "^0.5.0",
"lodash": "^4.17.21",
"node": "^18.12.1",
Expand Down
14 changes: 14 additions & 0 deletions src/app/FrontendTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export interface TooltipData {
x: number;
y: number;
color: string;
name?: string;
}

export interface snapshot {
Expand Down Expand Up @@ -383,3 +384,16 @@ export interface Snapshots {
export interface ErrorContainerProps {
port: chrome.runtime.Port | null;
}

export interface AxContainer {
axSnapshots: [];
snapshot: {
name?: string;
componentData?: object;
state?: string | object;
stateSnaphot?: object;
children?: any[];
};
snapshots: [];
currLocation: object;
}
Loading

0 comments on commit 017dd01

Please sign in to comment.