Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Dockerfile.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ADD . /app

# build
WORKDIR /app
RUN yarn
RUN yarn --ignore-engines
RUN yarn run build-local
RUN rm -rf node_modules

Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@
"json": "^11.0.0",
"puppeteer": "^13.5.1",
"react-scripts": "^5.0.1",
"wait-on": "^6.0.1"
"wait-on": "^9.0.4"
},
"homepage": "https://tgve.github.io/app"
}
"homepage": "https://tgve.github.io/app",
"resolutions": {
"ws": ">=8.17.1",
"tar-fs": ">=2.1.4",
"underscore": ">=1.13.8"
}
}
3 changes: 2 additions & 1 deletion src/App.e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ async function screenshot() {
return page.screenshot({ fullPage: true });
}

jest.setTimeout(timeout)

let browser;
let page;

beforeAll(async () => {
jest.setTimeout(timeout)
browser = await puppeteer.launch({
dumpio: true // if true then formidable amount of console logging
})
Expand Down
Loading
Loading