Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 0da49bf

Browse files
authored
chore: fix puppeteer example (#319)
1 parent e4f056c commit 0da49bf

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

website/pages/en/examples.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const examples = examplesPkgs.map((e) => {
1616
const node = base.startsWith('node');
1717
const chrome = base.startsWith('chrome');
1818
const ptor = base.startsWith('protractor');
19+
const puppet = base.startsWith('puppeteer');
1920
const r = base.startsWith('react');
2021
const js = base.endsWith('js');
2122
const ts = base.endsWith('ts');
@@ -42,6 +43,10 @@ const examples = examplesPkgs.map((e) => {
4243
imgs.push('img/protractor.svg');
4344
title = 'Protractor';
4445
}
46+
if (puppet) {
47+
imgs.push('https://user-images.githubusercontent.com/10379601/29446482-04f7036a-841f-11e7-9872-91d1fc2ea683.png');
48+
title = 'Puppeteer';
49+
}
4550
if (r) {
4651
imgs.push('img/react.svg');
4752
title = 'React';

0 commit comments

Comments
 (0)