Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucashdoa/bitso-qa-challenge
💰 Take home test for a QA position at Bitso.
https://github.com/lucashdoa/bitso-qa-challenge
Last synced: about 2 months ago
JSON representation
💰 Take home test for a QA position at Bitso.
- Host: GitHub
- URL: https://github.com/lucashdoa/bitso-qa-challenge
- Owner: lucashdoa
- Created: 2021-11-30T00:59:32.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-30T11:43:35.000Z (about 3 years ago)
- Last Synced: 2023-06-16T03:28:14.045Z (over 1 year ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bitso-qa-challenge
💰 Take home test for a QA position at Bitso.
## How to use this automation
1️⃣ Install dependencies
I've use npm as the package manager. After cloning the project, open your terminal emulator and run the command:
```
npm i
```2️⃣ Inform your Username and Password
Open the file "cypress.env.json" at the root folder, and enter your username and password.
Remeber: Sensitive data shouldn't be versioned, so be sure not to commit your changes.```
// Example{
"username": "[email protected]",
"password": "p4$$w0rd"
}
```3️⃣ Open Cypress Test Runner
Since there are some security checks at the staging environment like authorizing a new browser, it's not possible to run this automation in headless mode. To open the test runner run the following command:
```
npm test
```