-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from maany/feature-4_completion_userpass
Feature 4 completion userpass
- Loading branch information
Showing
38 changed files
with
11,034 additions
and
2,648 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SESSION_PASSWORD=2gyZ3GDw3LHZQKDhPmPDL3sjREVRXPr8 | ||
RUCIO_AUTH_HOST=https://rucio-auth-host.com | ||
RUCIO_HOST=https://rucio-host.com | ||
SESSION_COOKIE_NAME=rucio-webui-test-session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// jest.config.js | ||
const nextJest = require('next/jest') | ||
|
||
const createJestConfig = nextJest({ | ||
// Provide the path to your Next.js app to load next.config.js and .env files in your test environment | ||
dir: './', | ||
}) | ||
|
||
// Add any custom config to be passed to Jest | ||
/** @type {import('jest').Config} */ | ||
const customJestConfig = { | ||
// Add more setup options before each test is run | ||
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'], | ||
// if using TypeScript with a baseUrl set to the root directory then you need the below for alias' to work | ||
moduleDirectories: ['node_modules', '<rootDir>/'], | ||
|
||
// If you're using [Module Path Aliases](https://nextjs.org/docs/advanced-features/module-path-aliases), | ||
// you will have to add the moduleNameMapper in order for jest to resolve your absolute paths. | ||
// The paths have to be matching with the paths option within the compilerOptions in the tsconfig.json | ||
// For example: | ||
|
||
moduleNameMapper: { | ||
'@/(.*)$': '<rootDir>/src/$1', | ||
}, | ||
testEnvironment: 'jest-environment-jsdom', | ||
} | ||
|
||
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async | ||
export default createJestConfig(customJestConfig) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import '@testing-library/jest-dom/extend-expect' | ||
import "reflect-metadata" | ||
import fetchMock from 'jest-fetch-mock' | ||
fetchMock.enableMocks() |
Oops, something went wrong.