Show errors from Karma (#2545)
This commit is contained in:
parent
93cfdeb572
commit
bc8aae5d50
|
|
@ -1,3 +1,4 @@
|
|||
try {
|
||||
const path = require("path");
|
||||
|
||||
let defaultReporters = ["progress", "summary"];
|
||||
|
|
@ -49,3 +50,6 @@ function createKarmaConfig(config) {
|
|||
}
|
||||
|
||||
module.exports = createKarmaConfig;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
try {
|
||||
// Karma configuration for a local run (the default)
|
||||
const createKarmaConfig = require("./karma.base.conf");
|
||||
const fs = require("fs");
|
||||
|
|
@ -53,3 +54,6 @@ if (process.env.ASPNETCORE_SIGNALR_TEST_ALL_BROWSERS === "true") {
|
|||
module.exports = createKarmaConfig({
|
||||
browsers,
|
||||
});
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
try {
|
||||
// Karma configuration for a SauceLabs-based CI run.
|
||||
const createKarmaConfig = require("./karma.base.conf");
|
||||
|
||||
|
|
@ -66,3 +67,6 @@ module.exports = createKarmaConfig({
|
|||
}
|
||||
},
|
||||
});
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
Loading…
Reference in New Issue