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
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ VITE_IDP_REDIRECT_PATH="/callback"
VITE_IDP_SCOPE="openid profile email lakekeeper"
VITE_IDP_RESOURCE=""
VITE_IDP_POST_LOGOUT_REDIRECT_PATH="/logout"
VITE_ENABLE_AUTHORIZATION=false
VITE_ENABLE_AUTHORIZATION=true
VITE_APP_ICEBERG_CATALOG_URL="http://localhost:8181"
12 changes: 12 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { Config } from '@jest/types';

const config: Config.InitialOptions = {
preset: 'ts-jest',
testEnvironment: 'node',
testTimeout: 30000, // Selenium tests might need longer timeouts
setupFilesAfterEnv: ['./tests/setup.ts'],
moduleFileExtensions: ['ts', 'js'],
testMatch: ['**/tests/**/*.test.ts'],
};

export default config;
Loading
Loading