diff --git a/system-tests/__snapshots__/domain_spec.js b/system-tests/__snapshots__/domain_spec.js deleted file mode 100644 index 49a7e3f1a2af..000000000000 --- a/system-tests/__snapshots__/domain_spec.js +++ /dev/null @@ -1,107 +0,0 @@ -exports['e2e domain / passes'] = ` - -==================================================================================================== - - (Run Starting) - - ┌────────────────────────────────────────────────────────────────────────────────────────────────┐ - │ Cypress: 1.2.3 │ - │ Browser: FooBrowser 88 │ - │ Specs: 2 found (domain.cy.js, domain_2.cy.js) │ - │ Searched: cypress/e2e/domain* │ - └────────────────────────────────────────────────────────────────────────────────────────────────┘ - - -──────────────────────────────────────────────────────────────────────────────────────────────────── - - Running: domain.cy.js (1 of 2) - - - localhost - ✓ can visit - - com.au - ✓ can visit - - herokuapp.com - ✓ can visit - - - 3 passing - - - (Results) - - ┌────────────────────────────────────────────────────────────────────────────────────────────────┐ - │ Tests: 3 │ - │ Passing: 3 │ - │ Failing: 0 │ - │ Pending: 0 │ - │ Skipped: 0 │ - │ Screenshots: 0 │ - │ Video: true │ - │ Duration: X seconds │ - │ Spec Ran: domain.cy.js │ - └────────────────────────────────────────────────────────────────────────────────────────────────┘ - - - (Video) - - - Started processing: Compressing to 32 CRF - - Finished processing: /XXX/XXX/XXX/cypress/videos/domain.cy.js.mp4 (X second) - - -──────────────────────────────────────────────────────────────────────────────────────────────────── - - Running: domain_2.cy.js (2 of 2) - - - localhost - ✓ can visit - - com.au - ✓ can visit - - herokuapp.com - ✓ can visit - - - 3 passing - - - (Results) - - ┌────────────────────────────────────────────────────────────────────────────────────────────────┐ - │ Tests: 3 │ - │ Passing: 3 │ - │ Failing: 0 │ - │ Pending: 0 │ - │ Skipped: 0 │ - │ Screenshots: 0 │ - │ Video: true │ - │ Duration: X seconds │ - │ Spec Ran: domain_2.cy.js │ - └────────────────────────────────────────────────────────────────────────────────────────────────┘ - - - (Video) - - - Started processing: Compressing to 32 CRF - - Finished processing: /XXX/XXX/XXX/cypress/videos/domain_2.cy.js.mp4 (X second) - - -==================================================================================================== - - (Run Finished) - - - Spec Tests Passing Failing Pending Skipped - ┌────────────────────────────────────────────────────────────────────────────────────────────────┐ - │ ✔ domain.cy.js XX:XX 3 3 - - - │ - ├────────────────────────────────────────────────────────────────────────────────────────────────┤ - │ ✔ domain_2.cy.js XX:XX 3 3 - - - │ - └────────────────────────────────────────────────────────────────────────────────────────────────┘ - ✔ All specs passed! XX:XX 6 6 - - - - - -` diff --git a/system-tests/projects/e2e/cypress/e2e/domain.cy.js b/system-tests/projects/e2e/cypress/e2e/domain.cy.js deleted file mode 100644 index 1914f1cf3e4b..000000000000 --- a/system-tests/projects/e2e/cypress/e2e/domain.cy.js +++ /dev/null @@ -1,19 +0,0 @@ -/* eslint-disable no-undef */ -describe('localhost', () => { - it('can visit', () => { - cy.visit('http://app.localhost:4848') - }) -}) - -describe('com.au', () => { - it('can visit', () => { - cy.visit('http://foo.bar.baz.com.au:4848') - }) -}) - -describe('herokuapp.com', () => { - it('can visit', () => { - cy.visit('https://cypress-example.herokuapp.com') - cy.contains('Getting Started with Node on Heroku') - }) -}) diff --git a/system-tests/projects/e2e/cypress/e2e/domain_2.cy.js b/system-tests/projects/e2e/cypress/e2e/domain_2.cy.js deleted file mode 100644 index 1914f1cf3e4b..000000000000 --- a/system-tests/projects/e2e/cypress/e2e/domain_2.cy.js +++ /dev/null @@ -1,19 +0,0 @@ -/* eslint-disable no-undef */ -describe('localhost', () => { - it('can visit', () => { - cy.visit('http://app.localhost:4848') - }) -}) - -describe('com.au', () => { - it('can visit', () => { - cy.visit('http://foo.bar.baz.com.au:4848') - }) -}) - -describe('herokuapp.com', () => { - it('can visit', () => { - cy.visit('https://cypress-example.herokuapp.com') - cy.contains('Getting Started with Node on Heroku') - }) -}) diff --git a/system-tests/test/domain_spec.js b/system-tests/test/domain_spec.js deleted file mode 100644 index bc2d303c7915..000000000000 --- a/system-tests/test/domain_spec.js +++ /dev/null @@ -1,24 +0,0 @@ -const systemTests = require('../lib/system-tests').default - -const hosts = { - 'app.localhost': '127.0.0.1', - 'foo.bar.baz.com.au': '127.0.0.1', -} - -describe('e2e domain', () => { - systemTests.setup({ - servers: { - port: 4848, - static: true, - }, - }) - - systemTests.it('passes', { - spec: 'domain*', - snapshot: true, - video: false, - config: { - hosts, - }, - }) -})