Replace Skip implementation with Kotlin Multiplatform implementation

This commit is contained in:
2026-09-02 22:11:32 +03:00
parent 902b683779
commit abf7cf2e83
184 changed files with 7163 additions and 2449 deletions
@@ -0,0 +1,21 @@
// workaround from https://github.com/ryanclark/karma-webpack/issues/498#issuecomment-790040818
const output = {
path: require("os").tmpdir() + '/' + '_karma_webpack_' + Math.floor(Math.random() * 1000000),
}
const optimization = {
runtimeChunk: true
}
config.set(
{
webpack: {... createWebpackConfig(), output, optimization},
files: config.files.concat([{
pattern: `${output.path}/**/*`,
watched: false,
included: false,
}]
)
}
)