Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Yegair/kotlin-jasmine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kotlin Jasmine

Kotlin JS Jasmine Bindings

Setup

TODO

Karma, Maven, frontend-maven-plugin

pom.xml:

<todo/>

src/test/resources/package.json:

{ "todo": true }

src/test/resources/karma.conf.js:

module.exports = function (config) {
    config.set({
        basePath: '',
        frameworks: ['jasmine'],
        plugins: [
            require('karma-jasmine'),
            require('karma-chrome-launcher')
        ],
        files: [
            {pattern: './kotlin.js', watched: false},
            {pattern: './kotlin-jasmine-core.js', watched: false},
            {pattern: './path/to/my/spec.js', watched: false}
        ],
        proxies: {
            '/': '/base'
        },
        client: {
            clearContext: false
        },
        port: 8765,
        logLevel: config['LOG_INFO'],
        browsers: ['Chrome'],
        colors: false,
        singleRun: true
    })
};

About

Kotlin JS Jasmine Bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published