mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
12 lines
262 B
Bash
Executable File
12 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")" # Run always in current dir
|
|
set -euo pipefail # Fail fast
|
|
|
|
# Unit tests
|
|
./gradlew :resources:library:test
|
|
./gradlew :resources:library:desktopTest
|
|
|
|
# Android integration tests
|
|
./gradlew :resources:library:pixel5DebugAndroidTest
|
|
|