Skip to content

Commit

Permalink
[remote-driver] Cleanup
Browse files Browse the repository at this point in the history
GitOrigin-RevId: df2b9841c0fd6155fe2c74f449caf50fef8387cc
  • Loading branch information
dmyud authored and intellij-monorepo-bot committed Feb 8, 2025
1 parent 5818f18 commit a5ef918
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package com.intellij.ide.starter.report

import com.intellij.ide.starter.telemetry.computeWithSpan
import com.intellij.openapi.diagnostic.logger
import com.intellij.openapi.util.text.HtmlChunk.span
import com.intellij.tools.ide.util.common.logError
import io.qameta.allure.Allure
import io.qameta.allure.model.Status
Expand Down Expand Up @@ -42,6 +41,10 @@ object AllureHelper {
return Allure.step(name, Allure.ThrowableContextRunnable { action.invoke() })
}

fun step(name: String) {
Allure.step(name)
}

fun skippedStep(name: String) {
Allure.step(name, Status.SKIPPED)
}
Expand Down

0 comments on commit a5ef918

Please sign in to comment.