Skip to content

Commit

Permalink
chore: move tests closer to code (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez authored Oct 15, 2023
1 parent fb512c8 commit 5ad8d41
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/indexer.test.ts → src/core/indexer.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { indexerCode } from '../src/core/indexer'
import { indexerCode } from './indexer'
import { describe, expect, it } from 'vitest'

describe('indexer', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.ts → src/core/transform.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, expect, it } from 'vitest'
import { transform } from '../src/core/transform'
import { transform } from './transform'

describe('transform', () => {
it('handles one simple story', async () => {
Expand Down
1 change: 0 additions & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"include": [
// whatever paths you intend to lint
"src",
"test",
"examples",
"playground",
"scripts",
Expand Down

0 comments on commit 5ad8d41

Please sign in to comment.