Skip to content

Commit

Permalink
Chore: Move tests dir into src
Browse files Browse the repository at this point in the history
  • Loading branch information
stormwarning committed Jan 17, 2022
1 parent f108cf4 commit cbdc424
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/plugin.test.ts → src/__tests__/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import tailwindcss from 'tailwindcss'

// Need to test this how consumers will use it, using `require()`.
// eslint-disable-next-line @typescript-eslint/no-var-requires
const capsizePlugin = require('../dist')
const capsizePlugin = require('../../dist')

const THEME_CONFIG = {
screens: {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"include": ["src", "types", "__tests__"],
"include": ["src", "types", "src/__tests__"],
"compilerOptions": {
"module": "esnext",
"lib": ["dom", "esnext"],
Expand Down

0 comments on commit cbdc424

Please sign in to comment.