Skip to content

Commit

Permalink
Support TestCoroutineInterceptor on K/N (#3219)
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Sep 26, 2022
1 parent ff48295 commit e7fb9bf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ class TestCaseExecutor(
TestInvocationInterceptor(configuration.registry, timeMark),
InvocationTimeoutInterceptor,
if (platform == Platform.JVM && testCase.config.testCoroutineDispatcher) TestDispatcherInterceptor() else null,
if (platform == Platform.JVM && testCase.config.coroutineTestScope) TestCoroutineInterceptor() else null,
if (platform != Platform.JS && testCase.config.coroutineTestScope) TestCoroutineInterceptor() else null,
CoroutineDebugProbeInterceptor,
)

Expand Down

0 comments on commit e7fb9bf

Please sign in to comment.