You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/core/test/nested-suite.test.ts
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,3 +25,9 @@ describe('a', () => {
25
25
it('visited',()=>{
26
26
expect(visited).toBe(true)
27
27
})
28
+
29
+
it('suite inside test should throw',()=>{
30
+
expect(()=>{
31
+
describe('inside test',()=>{})
32
+
}).toThrowErrorMatchingInlineSnapshot(`[Error: Calling the suite function inside test function is not allowed. It can be only called at the top level or inside another suite function.]`)
0 commit comments