summaryrefslogtreecommitdiff
path: root/test-runner/build.gradle
blob: 4611381800ce790cbb864511defa369fb8a3ebb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plugins {
    id 'org.jetbrains.kotlin.jvm' version '2.0.0'
}

repositories {
    mavenCentral()
}

dependencies {
    testImplementation 'junit:junit:4.13.2'
}

test {
    useJUnit()
    testLogging {
        events "passed", "failed", "skipped"
    }
}