diff --git a/.circleci/config.yml b/.circleci/config.yml index ff017a0..7729459 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -64,7 +64,7 @@ jobs: command: echo 'console.log(require("jasmine-core").version())' | node - run: name: Run tests - command: JASMINE_NO_BROWSER_TESTS=y npm test + command: npm test saucelabs_integration_test: executor: node18 diff --git a/spec/esmIntegrationSpec.js b/spec/esmIntegrationSpec.js index 1d7c4c0..740055a 100644 --- a/spec/esmIntegrationSpec.js +++ b/spec/esmIntegrationSpec.js @@ -1,12 +1,6 @@ const { exec } = require('child_process'); describe('ESM integration', function() { - beforeEach(function() { - if (process.env.JASMINE_NO_BROWSER_TESTS) { - pending('skipping because the JASMINE_NO_BROWSER_TESTS env var is set'); - } - }); - it( 'supports ES modules as specs, helpers, and sources', function(done) { diff --git a/spec/exitCodeIntegrationSpec.js b/spec/exitCodeIntegrationSpec.js index 039d6c8..a5ec334 100644 --- a/spec/exitCodeIntegrationSpec.js +++ b/spec/exitCodeIntegrationSpec.js @@ -1,12 +1,6 @@ const { exec } = require('child_process'); describe('Exit code integration', function() { - beforeEach(function() { - if (process.env.JASMINE_NO_BROWSER_TESTS) { - pending('skipping because the JASMINE_NO_BROWSER_TESTS env var is set'); - } - }); - it( 'exits 0 on success', async function() { diff --git a/spec/importMapSpec.js b/spec/importMapSpec.js index d3ac10e..fdcdddb 100644 --- a/spec/importMapSpec.js +++ b/spec/importMapSpec.js @@ -3,12 +3,6 @@ const { exec } = require('child_process'); describe('Import Map Sample Project', function() { - beforeEach(function() { - if (process.env.JASMINE_NO_BROWSER_TESTS) { - pending('skipping because the JASMINE_NO_BROWSER_TESTS env var is set'); - } - }); - it( 'executes example specs', function(done) { diff --git a/spec/randomizationIntegrationSpec.js b/spec/randomizationIntegrationSpec.js index b3a4c09..982a714 100644 --- a/spec/randomizationIntegrationSpec.js +++ b/spec/randomizationIntegrationSpec.js @@ -1,12 +1,6 @@ const { exec } = require('child_process'); describe('Randomization integration', function() { - beforeEach(function() { - if (process.env.JASMINE_NO_BROWSER_TESTS) { - pending('skipping because the JASMINE_NO_BROWSER_TESTS env var is set'); - } - }); - it( 'reports the command to reproduce the random seed', async function() { diff --git a/spec/reporterIntegrationSpec.js b/spec/reporterIntegrationSpec.js index 3dd2052..6076fb3 100644 --- a/spec/reporterIntegrationSpec.js +++ b/spec/reporterIntegrationSpec.js @@ -1,12 +1,6 @@ const { exec } = require('child_process'); describe('Reporter integration', function() { - beforeEach(function() { - if (process.env.JASMINE_NO_BROWSER_TESTS) { - pending('skipping because the JASMINE_NO_BROWSER_TESTS env var is set'); - } - }); - it( 'evaluates relative reporter paths in config files relative to the CWD', function(done) {