A Sokoban Game you play by coding in JavaScript. Made by Google For Developers.
Play directly in your desktop browser.
To run the game use the launch configuration in VSCode/Android Studio or use the following commands:
$ flutter run -d chrome
Purrfect Code works best in Chrome
To run all unit and widget tests use the following command:
$ flutter test --coverage --test-randomize-ordering-seed random
To view the generated coverage report you can use lcov.
# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/
# Open Coverage Report
$ open coverage/index.html