Skip to content

Commit

Permalink
Separate test from build system
Browse files Browse the repository at this point in the history
  • Loading branch information
ComLock committed Apr 26, 2024
1 parent 900c4fc commit 2c3c1c0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import type { Config } from '@jest/types';


import {
AND_BELOW,
DIR_SRC,
} from './tsup/constants';


const DIR_SRC = 'src/main/resources';
const DIR_SRC_JEST = 'src/jest';
const DIR_SRC_JEST_CLIENT = `${DIR_SRC_JEST}/client`;
const DIR_SRC_JEST_SERVER = `${DIR_SRC_JEST}/server`;
const AND_BELOW = '**';
const SOURCE_FILES = `*.{ts,tsx}`;
const TEST_EXT = `{spec,test}.{ts,tsx}`;
const TEST_FILES = `*.${TEST_EXT}`;
Expand Down

0 comments on commit 2c3c1c0

Please sign in to comment.