{{#var testGroupName = generators.testGroupName(entity)}}
{{#var testFileName = generators.testFileName(entity.name)}}
{{{
  exports({
    to: app.makePath(suite.directory, entity.path, testFileName)
  })
}}}
import { test } from '@japa/runner'

test.group('{{ testGroupName }}', () => {
  test('example test', async ({ assert }) => {
  })
})
