Skip to content

Commit

Permalink
test: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Jan 29, 2024
1 parent f591bfc commit d900531
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/typescript/test-d/nested-suite1.test-d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { describe, test } from 'vitest'

describe('suite-A', () => {
describe('suite-B', () => {
test('case-X', () => {
})
})
})

test('case-Y', () => {
})
18 changes: 18 additions & 0 deletions test/typescript/test-d/nested-suite2.test-d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { describe, test } from 'vitest'

describe('suite-A', () => {
describe('suite-B', () => {
test('case-X', () => {
})

describe('suite-C', () => {
test('case-Y', () => {
})
})
})

describe('suite-D', () => {
test('case-Z', () => {
})
})
})

0 comments on commit d900531

Please sign in to comment.