Skip to content

Commit 05e1c6f

Browse files
authored
Merge pull request #11 from AthennaIO/develop
chore(npm): update dependencies
2 parents 22e6388 + b44a398 commit 05e1c6f

File tree

5 files changed

+6
-19
lines changed

5 files changed

+6
-19
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@athenna/validator",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "The Athenna validation solution. Built on top of VineJS.",
55
"license": "MIT",
66
"author": "João Lenon <lenon@athenna.io>",

src/validators/TestValidator.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

tests/helpers/BaseCommandTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class BaseCommandTest {
2424

2525
@AfterEach()
2626
public async afterEach() {
27-
await Folder.safeRemove(Path.app())
27+
await Folder.safeRemove(Path.validators())
2828
await Folder.safeRemove(Path.fixtures('storage'))
2929

3030
await new File(Path.pwd('package.json')).setContent(this.originalPackageJson)

tests/unit/commands/MakeValidatorCommandTest.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ export default class MakeValidatorCommandTest extends BaseCommandTest {
1616
public async shouldBeAbleToCreateAValidatorFile({ assert, command }: Context) {
1717
const output = await command.run('make:validator TestValidator')
1818

19+
console.log(output.output)
20+
1921
output.assertSucceeded()
2022
output.assertLogged('[ MAKING VALIDATOR ]')
2123
output.assertLogged('[ success ] Validator "TestValidator" successfully created.')

0 commit comments

Comments
 (0)