capacitor-testing
Audited by Runlayer on Feb 22, 2026
Tool passed security scan
Malicious tool definition detected
String, "test") }, error: { error in XCTFail("Should not error") }) plugin.echo(call!) } } ``` ### Android JUnit ```kotlin // android/app/src/test/java/com/example/PluginTest.kt import org.junit.Test import org.junit.Assert.* import org.mockito.Mockito.* class PluginTest { @Test fun `echo returns input value`() { val plugin = MyPlugin() val call = mock(PluginCall::class.java) `when`(call.getString("value")).thenReturn("test") plugin.echo(call) verify(call).resolve(argThat { data -> data.getStrin
Malicious tool definition detected
Tool: metadata.json Description: { "version": "1.0.0", "organization": "Capgo", "date": "January 2026", "abstract": "Complete testing guide for Capacitor apps covering unit tests with Vitest, component tests, E2E tests with Playwright and Appium, and native testing.