All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.io.gianluigip.spectacle.report.config.ConfigLoader.kt Maven / Gradle / Ivy

The newest version!
package io.gianluigip.spectacle.report.config

import io.gianluigip.spectacle.report.publisher.TerminalPublisher

actual object ConfigLoader {

    actual val CONFIG: ReportConfiguration
        get() {
            println("Warning only default config is supported for JavaScript.")
            return ReportConfiguration(
                team = "Other",
                source = "Other",
                component = "Other",
                publishers = listOf(TerminalPublisher),
                centralConfig = CentralPublisherConfig(
                    enabled = false,
                    host = null,
                    username = "",
                    password = "",
                    publishEmptySpecs = false,
                    wikiEnabled = false,
                    localWikiLocation = null,
                ),
            )
        }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy