From fd3045eb9d55157ad3843dbcb436f9561353ddf8 Mon Sep 17 00:00:00 2001
From: Ben Wheeler <wheeler.benjamin@gmail.com>
Date: Tue, 4 Jun 2019 11:40:03 -0400
Subject: [PATCH] also turn off examples tests that load remote project

---
 test/integration/examples.test.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/integration/examples.test.js b/test/integration/examples.test.js
index 4a50c32ce..3554151db 100644
--- a/test/integration/examples.test.js
+++ b/test/integration/examples.test.js
@@ -26,7 +26,7 @@ describe('player example', () => {
         await driver.quit();
     });
 
-    test('Load a project by ID', async () => {
+    test.skip('Player: load a project by ID', async () => {
         const projectId = '96708228';
         await loadUri(`${uri}#${projectId}`);
         await clickXpath('//img[@title="Go"]');
@@ -56,7 +56,7 @@ describe('blocks example', () => {
         await driver.quit();
     });
 
-    test('Load a project by ID', async () => {
+    test.skip('Blocks: load a project by ID', async () => {
         const projectId = '96708228';
         await loadUri(`${uri}#${projectId}`);
         await new Promise(resolve => setTimeout(resolve, 2000));
-- 
GitLab