From b7b21ebd5d6ec48b39ec7c907c933b4e19d3aa2d Mon Sep 17 00:00:00 2001 From: lismana Date: Mon, 8 Apr 2024 17:50:05 -0400 Subject: [PATCH] get rid of IE11 spec --- end-to-end-test/ie11/specs/ie.js | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 end-to-end-test/ie11/specs/ie.js diff --git a/end-to-end-test/ie11/specs/ie.js b/end-to-end-test/ie11/specs/ie.js deleted file mode 100644 index b77df4e19f0..00000000000 --- a/end-to-end-test/ie11/specs/ie.js +++ /dev/null @@ -1,21 +0,0 @@ -var assert = require('assert'); -var goToUrlAndSetLocalStorage = require('../../shared/specUtils') - .goToUrlAndSetLocalStorage; -var waitForOncoprint = require('../../shared/specUtils').waitForOncoprint; - -const CBIOPORTAL_URL = 'http://localhost:3000'; - -describe('Application in IE11', function() { - it('renders query page study items', function() { - goToUrlAndSetLocalStorage(CBIOPORTAL_URL); - $('[data-test="StudySelect"]').waitForExist(30000); - }); - - // it('renders the oncoprint', function() { - // $('.exampleQueries').waitForExist(); - // $('.exampleQueries') - // .$$('a')[1] - // .click(); - // waitForOncoprint(); - // }); -});