Piotr Krzemiński
02/09/2023, 12:21 PMPiotr Krzemiński
02/09/2023, 12:22 PMPiotr Krzemiński
02/09/2023, 12:22 PMPiotr Krzemiński
02/09/2023, 12:22 PMchristophsturm
02/09/2023, 1:16 PMPiotr Krzemiński
02/09/2023, 1:18 PMsam
02/09/2023, 1:34 PMPiotr Krzemiński
02/09/2023, 1:36 PMphldavies
02/09/2023, 1:50 PMPiotr Krzemiński
02/09/2023, 1:50 PMwasyl
02/09/2023, 2:13 PMPiotr Krzemiński
02/09/2023, 2:18 PMpytest
with --snapshot-update
. In the library I mentioned in the thread, it’s either about calling a specific Gradle task or passing a Gradle property. I like the approach with the property because it still lets me run the tests however I like (e.g. a subset), but we can consider other optionswasyl
02/09/2023, 2:34 PMPiotr Krzemiński
02/09/2023, 2:48 PMwasyl
02/09/2023, 3:09 PMtasks.withType(Test).configureEach { inputs.add(<snapshotsPath>) }
. Just thinking aloud, and I love the idea of snapshots in Kotest — I’ve been looking into some of those libraries recently myselfEmil Kantis
02/09/2023, 4:17 PMsrc/test/resources
for instance.. but perhaps that doesn't work for multiplatform?Emil Kantis
02/10/2023, 9:45 PMtasks.named<Copy>("jvmProcessResources") {
val jsBrowserDistribution = tasks.named("jsBrowserDistribution")
from(jsBrowserDistribution)
}
Piotr Krzemiński
02/13/2023, 6:13 AMNed Twigg
02/12/2024, 10:45 PM