Replace Skip implementation with Kotlin Multiplatform implementation
This commit is contained in:
@@ -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,
|
||||
}]
|
||||
)
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user