From 7affee3d0d1e39721671f9870edec6c287792425 Mon Sep 17 00:00:00 2001 From: Jan Seeger Date: Tue, 3 Dec 2024 16:45:57 +0100 Subject: [PATCH] Update Readme --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e595201..4c6f5e9 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ enum class Universe { @Serializable data class Spaceship( val name: String, - + @SerialName("max_occupants") val maxOccupants: Long, @@ -90,16 +90,10 @@ The unit tests ship with everything needed to run. For the integration tests a running [Firebase Emulator](https://firebase.google.com/docs/emulator-suite) needs to be present. -Once installed, start the emulator using: - -```shell -firebase emulators:start --project demo-test --only database,firestore -``` - -and then once both the Firestore Emulator as well as the Realtime DB Emulator have started, you can proceed by running the integration tests: +Once installed, start the tests (together with the emulators) using: ```shell -./gradlew pixel2api30Check +firebase emulators:exec --project demo-test --only database,firestore './gradlew pixel2api30Check --no-parallel' ``` ## Contributions