Skip to content

kotlin-community/kotlin-ava

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1443150 · Nov 14, 2018

History

2 Commits
Nov 13, 2018
Nov 14, 2018
Nov 13, 2018
Nov 14, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018
Nov 13, 2018

Repository files navigation

kotlin-ava

A kotlin wrapper for Ava test runner.

Installation

Download package from npm:

yarn add -D ava kotlin-ava babel-plugin-module-resolver

Then in your settings.gradle add:

include ':kotlin-ava'
project(':kotlin-ava').projectDir = new File(rootProject.projectDir, './node_modules/kotlin-ava')

And finally in build.gradle add:

dependencies {
    // ...
    testCompile project(":kotlin-ava")
}

compileTestKotlin2Js {
    kotlinOptions {
        outputFile = "${projectDir}/build/test.js"
        moduleKind = "commonjs"
        sourceMap = true
        sourceMapEmbedSources = "always"
    }
}

You also need to configure Ava, to do so edit Ava config, if you use package.json it should look like this:

"ava": {
    "require": [
      "kotlin-ava/bootstrap"
    ],
    "babel": {
      "plugins": [
        ["module-resolver", {
          "alias": {
            "^main$": "./build/main"
          }
        }]
      ]
    }
  }

Running tests

yarn ava ./build/test.js

Example

package Some.Package

import ava.Suite
import ava.test
import kotlinx.coroutines.delay
import kotlin.test.Test

class SomeTest : Suite {
    @Test
    override fun run() {
        test("something should be truthy") {
            it.truthy(Some.thing)
        }

        test("something should equal") {
            it.equal("something", "something")
        }

        test.async("something should be true") {
            suspend {
                delay(10000)
                it.isTrue(something)
            }
        }
    }
}

About

Kotlin wrapper for Ava

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published