Files
oneuptime/tests/package.json
Nawaz Dhandala 7992cdc78e fix test
2021-05-20 21:03:52 +01:00

33 lines
1.4 KiB
JSON

{
"name": "tests",
"version": "1.0.0",
"description": "Smoke tests for fyipe",
"main": "index.test.js",
"scripts": {
"test": "jest ./saas-tests/**/*.test.js",
"saas-test": "npm run test",
"enterprise-test": "jest ./enterprise-tests/**/*.test.js",
"staging-test": "export INIT_SCRIPT_URL=https://staging.fyipe.com/init-script && export HTTP_TEST_SERVER_URL=https://staging-test-server.fyipe.com && export HOME_URL=https://staging.fyipe.com && export ACCOUNTS_URL=https://staging.fyipe.com/accounts && export ADMIN_DASHBOARD_URL=https://staging.fyipe.com/admin && export DASHBOARD_URL=https://staging.fyipe.com/dashboard && export BACKEND_URL=https://staging.fyipe.com/api && export STATUSPAGE_URL=https://staging.fyipe.com/status-page && export APIDOCS_URL=https://staging.fyipe.com/docs && jest ./saas-tests/**/*.test.js",
"debug-staging-test": "export SLOMO=20 && export HEADLESS=false && npm run-script staging-test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"faker": "^4.1.0",
"jest": "^26.6.3",
"puppeteer": "^9.1.1",
"should": "^13.2.3"
},
"jest": {
"testMatch": [
"<rootDir>/**/**/**/*.test.js"
]
},
"dependencies": {
"axios": "^0.21.1"
}
}