Skip to content

Commit aa582d0

Browse files
committed
more async suite fixes
1 parent d41fc95 commit aa582d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/HotTestCases.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ describe("HotTestCases", () => {
177177
if (exportedTests.length < 1)
178178
return done(new Error("No tests exported by test case"));
179179

180-
const asyncSuite = describe("exported tests", () => {
180+
const asyncSuite = describe(`HotTestCases ${category.name} ${testName} exported tests`, () => {
181181
exportedTests.forEach(
182182
({ title, fn, timeout }) =>
183183
fn

test/TestCases.template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ const describeCases = config => {
235235
if (exportedTests.length === 0)
236236
return done(new Error("No tests exported by test case"));
237237

238-
const asyncSuite = describe("exported tests", () => {
238+
const asyncSuite = describe(`${config.name} ${category.name} ${testName} exported tests`, () => {
239239
exportedTests.forEach(
240240
({ title, fn, timeout }) =>
241241
fn

0 commit comments

Comments
 (0)