Skip to content
Snippets Groups Projects
Commit ba85b3ba authored by Orlando Piñero's avatar Orlando Piñero
Browse files

whole project

parent 293c3ae4
No related branches found
No related tags found
No related merge requests found
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
module.exports = {
testEnvironment: 'node',
collectCoverage: true,
reporters: ["default", "jest-junit"],
testMatch: ["**/*.test.js"]
};
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="jest tests" tests="1" failures="0" errors="0" time="3.97">
<testsuite name="Test Landing Page" errors="0" failures="0" skipped="0" timestamp="2023-05-04T21:42:20" time="3.902" tests="1">
<testcase classname="Test Landing Page should find the landing page" name="Test Landing Page should find the landing page" time="2.387">
</testcase>
</testsuite>
</testsuites>
\ No newline at end of file
This diff is collapsed.
{
"dependencies": {
"selenium": "^2.20.0",
"selenium-webdriver": "^4.9.0"
},
"scripts": {
"test": "jest --detectOpenHandles"
},
"devDependencies": {
"jest": "^29.5.0",
"jest-junit": "^16.0.0"
}
}
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment