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

com.github.mvysny.kaributesting.v10.mock.FakeDeploymentConfiguration.kt Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.github.mvysny.kaributesting.v10.mock

import com.vaadin.flow.function.DeploymentConfiguration
import java.io.File

public class FakeDeploymentConfiguration(public val delegate: DeploymentConfiguration) : DeploymentConfiguration by delegate {
    public override fun getProjectFolder(): File? {
        // workaround for https://github.com/vaadin/flow/issues/18682
        // we used to return null here, but Hilla hates that.
        return File(".").absoluteFile
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy