[Test] Move JsBackendDiagnosticsHandler to common test infra

^KT-64393
This commit is contained in:
Dmitriy Dolovov
2024-02-27 16:14:06 +01:00
committed by Space Team
parent d40f88337a
commit a4f2a4438b
4 changed files with 6 additions and 10 deletions
@@ -0,0 +1,20 @@
/*
* Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.test.backend.handlers
import org.jetbrains.kotlin.test.model.BinaryArtifacts
import org.jetbrains.kotlin.test.model.TestModule
import org.jetbrains.kotlin.test.services.TestServices
class JsBackendDiagnosticsHandler(testServices: TestServices) : KlibArtifactHandler(testServices) {
override fun processModule(module: TestModule, info: BinaryArtifacts.KLib) {
reportKtDiagnostics(module, info.reporter)
}
override fun processAfterAllModules(someAssertionWasFailed: Boolean) {
checkFullDiagnosticRender()
}
}