chore: make SCREENSHOT default true

Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Jef LeCompte
2020-09-21 16:18:56 -04:00
parent 12d25eb710
commit 4dfdb9eb2e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ const notifications = {
};
const page = {
capture: process.env.SCREENSHOT === 'true',
capture: process.env.SCREENSHOT ? process.env.SCREENSHOT === 'true' : 'true',
width: 1920,
height: 1080,
navigationTimeout: Number(process.env.PAGE_TIMEOUT ?? 30000),