File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ const TOOLING_VITEST_CONFIG = "test/vitest/vitest.tooling.config.ts";
2828const LONG_RUNNING_VITEST_CONFIGS = new Set ( [
2929 "test/vitest/vitest.e2e.config.ts" ,
3030 "test/vitest/vitest.ui-e2e.config.ts" ,
31+ "test/vitest/vitest.full-agentic.config.ts" ,
3132 "test/vitest/vitest.full-core-contracts.config.ts" ,
3233] ) ;
3334const TOOLING_EXCLUDED_TESTS = new Set ( [
Original file line number Diff line number Diff line change @@ -429,6 +429,7 @@ describe("scripts/run-vitest", () => {
429429 for ( const configArg of [
430430 "--config=test/vitest/vitest.e2e.config.ts" ,
431431 "--config=./test/vitest/vitest.ui-e2e.config.ts" ,
432+ "--config=test/vitest/vitest.full-agentic.config.ts" ,
432433 "--config=test/vitest/vitest.full-core-contracts.config.ts" ,
433434 ] ) {
434435 expect ( resolveRunVitestSpawnEnv ( { PATH : "/usr/bin" } , [ "run" , configArg ] ) ) . toEqual ( {
@@ -444,6 +445,13 @@ describe("scripts/run-vitest", () => {
444445 "/repo/test/vitest/vitest.e2e.config.ts" ,
445446 ] ) ,
446447 ) . toBe ( DEFAULT_LONG_RUNNING_VITEST_NO_OUTPUT_TIMEOUT_MS ) ;
448+ expect (
449+ resolveDefaultVitestNoOutputTimeoutMs ( [
450+ "run" ,
451+ "--config" ,
452+ "/repo/test/vitest/vitest.full-agentic.config.ts" ,
453+ ] ) ,
454+ ) . toBe ( DEFAULT_LONG_RUNNING_VITEST_NO_OUTPUT_TIMEOUT_MS ) ;
447455 expect (
448456 resolveDefaultVitestNoOutputTimeoutMs ( [
449457 "run" ,
You can’t perform that action at this time.
0 commit comments