Skip to content

Commit

Permalink
Merge pull request #73 from MeasureAuthoringTool/MAT-6710_addQRDAExpo…
Browse files Browse the repository at this point in the history
…rtButton

Mat 6710 add qrda export button
  • Loading branch information
sb-cecilialiu authored Mar 12, 2024
2 parents 8130cc4 + 3d76e03 commit 8c4e74f
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 13 deletions.
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = {
moduleNameMapper: {
"\\.(css)$": "identity-obj-proxy",
"single-spa-react/parcel": "single-spa-react/lib/cjs/parcel.cjs",
"^axios$": "axios/dist/node/axios.cjs",
},
setupFilesAfterEnv: ["@testing-library/jest-dom"],
};
34 changes: 23 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@
},
"dependencies": {
"@madie/madie-models": "^1.3.11",
"axios": "^0.27.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.5.5",
"single-spa": "^5.9.3",
"single-spa-react": "^4.3.1",
"styled-components": "^5.3.5",
"twin.macro": "^2.8.2"
"twin.macro": "^2.8.2",
"axios": "^1.6.7"
},
"types": "dist/madie-madie-util.d.ts",
"overrides": {
Expand Down
2 changes: 2 additions & 0 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export interface FeatureFlags {
qiCoreBonnieTestCases: boolean;
enableQdmRepeatTransfer: boolean;
generateCMSID: boolean;
testCaseExport: boolean;
}
const initialState: FeatureFlags = {
includeSDEValues: false,
Expand All @@ -34,6 +35,7 @@ const initialState: FeatureFlags = {
qdmHideJson: true,
enableQdmRepeatTransfer: false,
generateCMSID: false,
testCaseExport: false,
};

let state: FeatureFlags | null = initialState;
Expand Down

0 comments on commit 8c4e74f

Please sign in to comment.