Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating readme about running tests #539

Merged
merged 2 commits into from
Feb 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,42 @@ cd scarpe; bundle install

If you are using Visual Studio Code, you can use this [extension](https://github.com/gintama91/Scarpe-Vscode-Extension). This extension simplifies the process of executing commands by eliminating the need to repeatedly type lengthy file paths, resulting in a more efficient and productive development experience.

## Run Test

To Run all availble tests run command

```
bundle exec rake ci_test

```

### To Run Tests separately


run lacci tests

```
bundle exec rake lacci_test

```

Run Scarpe-Component Tests

```
bundle exec rake component_test
```

Run Scarpe Tests

```
bundle exec rake test
```

Check HTML Output

```
bundle exec rake test:check_html_fixtures
```
### Finer details

First, clone the [main GitHub repository](https://github.com/scarpe-team/scarpe).
Expand Down
Loading