Skip to content
Merged
Show file tree
Hide file tree
Changes from 19 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
1 change: 0 additions & 1 deletion web/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,4 @@ module.exports = {
}
}
]

}
1 change: 1 addition & 0 deletions web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM node:12-alpine
WORKDIR /usr/src/app
RUN apk update && apk add --virtual bash coreutils
RUN apk add --no-cache git
COPY package*.json ./
RUN npm install
COPY . .
Expand Down
1 change: 1 addition & 0 deletions web/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
setupTestFrameworkScriptFile: '<rootDir>/setupEnzyme.ts',
globalSetup: '<rootDir>globalSetup.ts',
setupFiles: ['<rootDir>setupJest.ts'],
testEnvironment: 'jsdom',
globals: {
'ts-jest': {
isolatedModules: 'true'
Expand Down
Loading