Skip to content
Merged
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
4 changes: 0 additions & 4 deletions packages/angular/build/src/builders/unit-test/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,6 @@ export async function* execute(
return;
}

context.logger.warn(
`NOTE: The "unit-test" builder is currently EXPERIMENTAL and not ready for production use.`,
);

// Initialize the test runner and normalize options
let runner;
let normalizedOptions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const execFile = promisify(execFileCb);
export default createBuilder(
async (schema: JestBuilderSchema, context: BuilderContext): Promise<BuilderOutput> => {
context.logger.warn(
'NOTE: The Jest builder is currently EXPERIMENTAL and not ready for production use.',
'NOTE: The Jest builder is currently EXPERIMENTAL and will be removed in version 22.',
);

const options = normalizeOptions(schema);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ import { writeTestFiles } from './write-test-files';
export default createBuilder(
async (schema: Schema, ctx: BuilderContext): Promise<BuilderOutput> => {
ctx.logger.warn(
'NOTE: The Web Test Runner builder is currently EXPERIMENTAL and not ready for production use.',
'NOTE: The Web Test Runner builder is currently EXPERIMENTAL and will be removed in version 22.',
);

logBuilderStatusWarnings(schema, ctx);

// Dynamic import `@web/test-runner` from the user's workspace. As an optional peer dep, it may not be installed
Expand Down
15 changes: 0 additions & 15 deletions tests/legacy-cli/e2e/tests/vitest/basic.ts

This file was deleted.