Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrbooi/trivia_quiz_app
https://github.com/mrbooi/trivia_quiz_app
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrbooi/trivia_quiz_app
- Owner: MrBooi
- Created: 2022-12-28T13:25:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-07T12:48:40.000Z (almost 1 year ago)
- Last Synced: 2023-11-07T13:42:03.940Z (almost 1 year ago)
- Language: Dart
- Size: 402 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Opentrivia
I've been reading about riverpod on Twitter, so this project is a way for me to learn riverpod and explore some of the most powerful features and problems riverpod solve.
### what to expect
- Unit Testing
- Widget Testing
- integration Testing### First-Time Setup
```
git clone https://github.com/MrBooi/trivia_quiz_app
make flutter_build_runner
```
### Running the tests
Use the following command to run both widget and unit tests```
make flutter_test
```To explore the test coverage, run tests with following commands
```
make flutter_coverage
```
Then generate coverage files
```
make flutter_coverage_files
```
Then open the html files:
```
make flutter_open_coverage_html
```