Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions openmetadata-ui/src/main/resources/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@
"preinstall": "cd ../../../../.. && yarn install --frozen-lockfile",
"postinstall": "yarn run build-check",
"pre-commit": "lint-staged --concurrent false",
"test": "jest --passWithNoTests --maxWorkers=3 ",
"test": "jest --passWithNoTests --maxWorkers=5",
"prepare": "cd ../../../../.. && husky install openmetadata-ui/src/main/resources/ui/.husky",
"test:watch": "jest --passWithNoTests --watch --maxWorkers=3",
"test:coverage": "jest --passWithNoTests --coverage --maxWorkers=3",
"test:cov-summary": "jest --passWithNoTests --coverage --coverageReporters json-summary --maxWorkers=3",
"test:watch": "jest --passWithNoTests --watch --maxWorkers=5",
"test:coverage": "jest --passWithNoTests --coverage --maxWorkers=5",
"test:cov-summary": "jest --passWithNoTests --coverage --coverageReporters json-summary --maxWorkers=5",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint './**/*.{js,jsx,ts,tsx,json}' --fix",
"pretty": "prettier . --config './.prettierrc.yaml' --ignore-path './.prettierignore' --write",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import DraggableBodyRow from 'components/TeamDetails/DraggableBodyRow';

export const DRAGGABLE_BODY_ROW = 'DraggableBodyRow';

// Represents table constants
export const TABLE_CONSTANTS = {
body: {
row: DraggableBodyRow,
Expand Down