mirror of
https://github.com/inventree/InvenTree.git
synced 2026-04-25 12:33:33 +00:00
6830ba5efe
* Enhance docstring * Return the ID of an offloaded task * Add API endpoint for background task detail * Add UI hook for monitoring background task progress * Handle queued tasks (not yet started) * Improve UX * Update frontend lib version * Bump API version * Fix notification * Simplify UI interface * Implement internal hook * Fix API path sequence * Add unit tests for task detail endpoint * Refactor code into reusable model * Explicit operation_id for API endpoints * Further refactoring * Use 200 response code - axios does not like 202, simplify it * Return task response for validation of part BOM * Fix schema * Cleanup * Run background worker during playwright tests - For full e2e integration testing * Improve hooks and unit testing * Rename custom hooks to meet react naming requirements
120 lines
3.5 KiB
TypeScript
120 lines
3.5 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
// Detect if running in CI
|
|
const IS_CI = !!process.env.CI;
|
|
|
|
const MAX_WORKERS: number = 3;
|
|
const MAX_RETRIES: number = 3;
|
|
|
|
/* We optionally spin-up services based on the testing mode:
|
|
*
|
|
* Local Development:
|
|
* - If running locally (developer mode), we run "vite dev" with HMR enabled
|
|
* - This allows playwright to monitor the code for changes
|
|
* - WORKERS = 1 (to avoid conflicts with HMR)
|
|
*
|
|
* CI Mode (Production):
|
|
* - In CI (GitHub actions), we run "vite build" to generate a production build
|
|
* - This build is then served by a local server for testing
|
|
* - This allows the tests to run much faster and with parallel workers
|
|
* - WORKERS = MAX_WORKERS (to speed up the tests)
|
|
*
|
|
* CI Mode (Coverage):
|
|
* - In coverage mode (GitHub actions), we cannot compile the code first
|
|
* - This is because we need to compile coverage report against ./src directory
|
|
* - So, we run "vite dev" with coverage enabled (similar to the local dev mode)
|
|
* - WORKERS = 1 (to avoid conflicts with HMR)
|
|
*/
|
|
|
|
const BASE_URL: string = IS_CI
|
|
? 'http://localhost:8000'
|
|
: 'http://localhost:5173';
|
|
|
|
console.log('Running Playwright Tests:');
|
|
console.log('- Base URL:', BASE_URL);
|
|
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
fullyParallel: false,
|
|
timeout: 90000,
|
|
forbidOnly: !!IS_CI,
|
|
retries: IS_CI ? MAX_RETRIES : 0,
|
|
workers: IS_CI ? MAX_WORKERS : 1,
|
|
reporter: IS_CI ? [['html', { open: 'never' }], ['github']] : 'list',
|
|
|
|
/* Configure projects for major browsers */
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
...devices['Desktop Chrome']
|
|
},
|
|
testIgnore: /customization/ // Ignore all tests in the "customization" folder for this project
|
|
},
|
|
{
|
|
name: 'firefox',
|
|
use: {
|
|
...devices['Desktop Firefox']
|
|
},
|
|
testIgnore: /customization/ // Ignore all tests in the "customization" folder for this project
|
|
},
|
|
{
|
|
name: 'customization',
|
|
use: {
|
|
...devices['Desktop Firefox']
|
|
},
|
|
testIgnore: /pui_.*\.spec\.ts/ // Ignore all "pui_*.spec.ts" tests for this project
|
|
}
|
|
],
|
|
|
|
/* Run your local dev server before starting the tests */
|
|
webServer: [
|
|
{
|
|
command: 'yarn run dev --host --port 5173',
|
|
url: 'http://localhost:5173',
|
|
reuseExistingServer: IS_CI,
|
|
stdout: 'pipe',
|
|
stderr: 'pipe',
|
|
timeout: 120 * 1000
|
|
},
|
|
{
|
|
command: 'invoke dev.server -a 0.0.0.0:8000',
|
|
env: {
|
|
INVENTREE_DEBUG: 'True',
|
|
INVENTREE_LOG_LEVEL: 'WARNING',
|
|
INVENTREE_PLUGINS_ENABLED: 'True',
|
|
INVENTREE_ADMIN_URL: 'test-admin',
|
|
INVENTREE_SITE_URL: 'http://localhost:8000',
|
|
INVENTREE_FRONTEND_API_HOST: 'http://localhost:8000',
|
|
INVENTREE_CORS_ORIGIN_ALLOW_ALL: 'True',
|
|
INVENTREE_COOKIE_SAMESITE: 'False',
|
|
INVENTREE_LOGIN_ATTEMPTS: '100',
|
|
INVENTREE_PLUGINS_MANDATORY: 'samplelocate'
|
|
},
|
|
url: 'http://localhost:8000/api/',
|
|
reuseExistingServer: IS_CI,
|
|
stdout: 'pipe',
|
|
stderr: 'pipe',
|
|
timeout: 120 * 1000
|
|
},
|
|
{
|
|
command: 'invoke worker',
|
|
env: {
|
|
INVENTREE_DEBUG: 'True',
|
|
INVENTREE_LOG_LEVEL: 'INFO',
|
|
INVENTREE_PLUGINS_ENABLED: 'True',
|
|
INVENTREE_PLUGINS_MANDATORY: 'samplelocate'
|
|
}
|
|
}
|
|
],
|
|
globalSetup: './playwright/global-setup.ts',
|
|
use: {
|
|
baseURL: BASE_URL,
|
|
headless: IS_CI ? true : undefined,
|
|
trace: 'on-first-retry',
|
|
contextOptions: {
|
|
reducedMotion: 'reduce'
|
|
}
|
|
}
|
|
});
|