https://github.com/wavesplatform/waves-explorer-tests
https://github.com/wavesplatform/waves-explorer-tests
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/wavesplatform/waves-explorer-tests
- Owner: wavesplatform
- Created: 2019-10-31T08:31:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T19:01:51.000Z (over 3 years ago)
- Last Synced: 2025-02-12T11:53:24.971Z (about 1 year ago)
- Language: JavaScript
- Size: 217 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Waves Explorer UI tests
Waves Explorer UI tests
https://wavesexplorer.com
### Installation
```sh
$ npm i
```
### Running tests
Need running local Selenium on port 4444
Or enable selenium-standalone plugin in config file
```javascript
plugins: {
wdio: {
enabled: true,
services: ['selenium-standalone']
},
```
#### All tests
```sh
$ npx codeceptjs run
```
#### Single test
Default browser is Google Chrome
```sh
$ npx codeceptjs run tests/assetInfo_tets.js
```
#### Run tests on different url
```sh
$ TEST_URL=https://wavesexplorer.com npx codeceptjs run
```
### Docker Compose
Compose with included selenium grid as service
#### Run all tests
```sh
$ TEST_URL=https://wavesexplorer.com docker-compose up --abort-on-container-exit --build
```