I'm having a little problem, all my tests are runn...
# strikt
d
I'm having a little problem, all my tests are running except for two that give me:
Copy code
java.lang.NoClassDefFoundError: filepeek/FilePeek
	at strikt.internal.FilePeek$filePeek$2.invoke(FilePeek.kt:7)
	at strikt.internal.FilePeek$filePeek$2.invoke(FilePeek.kt:5)
	at kotlin.SynchronizedLazyImpl.getValue(LazyJVM.kt:74)
	at strikt.internal.FilePeek.getFilePeek(FilePeek.kt)
	at strikt.api.Assertion$Builder$DefaultImpls.describe(Assertion.kt:256)
	at strikt.api.Assertion$Builder$DefaultImpls.get(Assertion.kt:215)
	at strikt.api.DescribeableBuilder$DefaultImpls.get(DescribeableBuilder.kt)
when I do
Copy code
expectThat(stats).filterIsInstance<SyncStat.SkippedAction>().hasSize(1)
what could be causing this?