From 06dcca48fe3646ae00f82e0822ebabcd416b281c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Delfino?= Date: Thu, 13 Feb 2020 07:38:31 +0100 Subject: [PATCH] Update README.md Correct the it-description of the first example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8281ec4..49f6341 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ require('@cypress/skip-test/support') Skip this test if running in Electron browser ```js -it('only runs on Electron', () => { +it('runs on everything except Electron', () => { cy.skipOn('electron') // the rest of the test })