com.challlen.karma
Owner: Baylor Triplett
allows you to run tests using Karma
https://github.com/challlen/karma-gradle
Sources: https://github.com/challlen/karma-gradle
Version 1.5.2 (latest)
1.5.2
Created 30 October 2019.
allows you to run tests using Karma
Using the plugins DSL:
plugins {
id("com.challlen.karma") version "1.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.challlen.gradle:karma-gradle:1.5.2")
}
}
apply(plugin = "com.challlen.karma")
Using the plugins DSL:
plugins {
id "com.challlen.karma" version "1.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.challlen.gradle:karma-gradle:1.5.2"
}
}
apply plugin: "com.challlen.karma"