Skip to content

Commit 31d5434

Browse files
authored
docs: move one image to src/images (microsoft#36857)
1 parent 14ad97c commit 31d5434

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docs/src/browsers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Running 1 test using 1 worker
232232

233233
With the VS Code extension you can run your tests on different browsers by checking the checkbox next to the browser name in the Playwright sidebar. These names are defined in your Playwright config file under the projects section. The default config when installing Playwright gives you 3 projects, Chromium, Firefox and WebKit. The first project is selected by default.
234234

235-
![Projects section in VS Code extension](https://github.com/microsoft/playwright/assets/13063165/58fedea6-a2b9-4942-b2c7-2f3d482210cf)
235+
![Projects section in VS Code extension](./images/vscode-projects-section.png)
236236

237237
To run tests on multiple projects(browsers), select each project by checking the checkboxes next to the project name.
238238

927 KB
Loading

utils/doclint/cli.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,8 @@ async function run() {
247247

248248
const badLinks = [];
249249
for (const { filePath, linkTarget, name } of mdLinks) {
250+
if (linkTarget.startsWith(path.join(documentationRoot, 'images')))
251+
continue;
250252
if (!mdSections.has(linkTarget))
251253
badLinks.push(`${path.relative(PROJECT_DIR, filePath)} references to '${linkTarget}' as '${name}' which does not exist.`);
252254
}

0 commit comments

Comments
 (0)