Skip to content

Commit

Permalink
docs: update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
stoffeastrom committed Mar 13, 2019
1 parent 2b4ce87 commit a511c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/puppeteer-examples.md
Expand Up @@ -65,7 +65,7 @@ describe('Puppeteer', () => {
const txt = await (await container.getProperty('textContent')).jsonValue();
expect(txt).to.equal('hello world');
});
it.only('should be able to intercept', async () => {
it('should be able to intercept', async () => {
await page.setRequestInterception(true);
page.on('request', (interceptedRequest) => {
if (/localhost:9677\/my\/fancy\/api/.test(interceptedRequest.url())) {
Expand Down

0 comments on commit a511c6e

Please sign in to comment.