Skip to content

Commit

Permalink
fix: config-validation-playground
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Jul 22, 2024
1 parent 3fa899e commit 5ffbe00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/config-validation-playground/src/pages/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Otherwise, `eslint-plugin-next` complains.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import 'playwright';
4 changes: 2 additions & 2 deletions apps/config-validation-playground/src/samples/vitest.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable */
/* eslint-disable @typescript-eslint/restrict-template-expressions, playwright/no-conditional-in-test, playwright/require-top-level-describe, vitest/expect-expect, vitest/no-conditional-in-test, vitest/require-top-level-describe */
import { test } from 'vitest';

// Test case 1
Expand All @@ -11,7 +11,7 @@ test('addition', () => {
});

// Test case 2
test('substraction', () => {
test('subtraction', () => {
const result = 5 - 2;

if (result !== 3) {
Expand Down

0 comments on commit 5ffbe00

Please sign in to comment.