Make these tests re-throw the same error to keep the trace.
This commit is contained in:
parent
19708e0154
commit
21309cc8d4
@ -12,9 +12,9 @@ export function runFixtureTests(fixturesPath, parseFunction) {
|
|||||||
try {
|
try {
|
||||||
runTest(task, parseFunction);
|
runTest(task, parseFunction);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
const message =
|
err.message =
|
||||||
name + "/" + task.actual.filename + ": " + err.message;
|
name + "/" + task.actual.filename + ": " + err.message;
|
||||||
throw new Error(message);
|
throw err;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -39,9 +39,9 @@ export function runThrowTestsWithEstree(fixturesPath, parseFunction) {
|
|||||||
try {
|
try {
|
||||||
runTest(task, parseFunction);
|
runTest(task, parseFunction);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
const message =
|
err.message =
|
||||||
name + "/" + task.actual.filename + ": " + err.message;
|
name + "/" + task.actual.filename + ": " + err.message;
|
||||||
throw new Error(message);
|
throw err;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user