بنقرة واحدة
fixing-skipped-tests
Use this skill when unskipping a test that was previously skipped.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use this skill when unskipping a test that was previously skipped.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when migrating Chromium layout tests to DevTools unit tests
Reproduce and investigate flakiness in a test.
Migrates legacy imperative DOM construction to local declarative Lit-html templates rendered inside existing containers.
High-level orchestrator for managing multi-pass migration of Chrome DevTools legacy components to the modern UI engineering vision (UI.Widget & Lit-html).
Workflow for merging a DevTools submodule into its parent module. Covers BUILD.gn consolidation and updating devtools_grd_files.gni.
| name | fixing-skipped-tests |
| description | Use this skill when unskipping a test that was previously skipped. |
This skill outlines the workflow for fixing skipped tests in the DevTools codebase, typically given a Chromium bug link (e.g., crbug.com/1234567).
Extract the Bug ID
crbug.com/<bugid>. Extract the <bugid> from the link.Create a Branch
fixed-<bugid>.devtools-version-control skill to create and switch branches appropriately.Search for the Skipped Tests
<bugid> to find skipped tests.it.skip('[crbug.com/<bugid>] ...', ...) or skipped describes that mention the bug ID.Iterative Fix Process
it.skip or describe.skip to it.only or describe.only for one of the tests associated with the bug, so that only that specific test runs.npm run test -- <path_to_test_file>) using the guidelines from the devtools-verification skill. If you are dealing with flaky tests, you can use the --repeat=x flag (e.g. npm run test -- <path_to_test_file> --repeat=20) to run the test multiple times to reproduce the flakiness..only.[crbug.com/<bugid>] prefix from the test name string if it is present.// TODO(crbug...): Flaky).Verify Full Build