We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4139c6 + 68fb590 commit c7e1337Copy full SHA for c7e1337
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@athenna/test",
3
- "version": "1.1.1",
+ "version": "1.1.2",
4
"description": "The Athenna test runner. Built on top of Japa.",
5
"license": "MIT",
6
"author": "João Lenon <lenon@athenna.io>",
templates/test.ejs
import { Test } from '@athenna/test'
-export class <%= namePascal %>Test extends Test {
+export class <%= namePascal %> extends Test {
/**
* Run your test.
*
templates/testFn.ejs
import { test } from '@japa/runner'
-test.group('<%= namePascal %>Test', () => {
+test.group('<%= namePascal %>', () => {
test('should be able to run tests', async ({ assert }) => {
assert.equal(2 + 2, 4)
})
0 commit comments