Skip to content

Commit

Permalink
Move e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder committed Dec 19, 2024
1 parent d0ae1de commit 49d09b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
12 changes: 12 additions & 0 deletions eng/tools/eslint-plugin-tsv/test/e2e.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ESLint } from "eslint";
import { describe, expect, it } from "vitest";

// TODO: Convert e2e tests to vitest

describe("e2e", () => {
it("/dev/null", async () => {
const eslint = new ESLint();
const results = await eslint.lintFiles("/dev/null");
expect(results).toHaveLength(0);
});
});
7 changes: 0 additions & 7 deletions eng/tools/eslint-plugin-tsv/test/e2e/e2e.test.ts

This file was deleted.

0 comments on commit 49d09b6

Please sign in to comment.