diff --git a/grunt/config/compress.js b/grunt/config/compress.js index ab994db8..af3d1a5a 100644 --- a/grunt/config/compress.js +++ b/grunt/config/compress.js @@ -2,7 +2,6 @@ var standaloneLibDir = "lib/jasmine-" + jasmineVersion; function root(path) { return "./" + path; } function libJasmineCore(path) { return root("lib/jasmine-core/" + path); } -function libConsole() { return "lib/console/" } function dist(path) { return root("dist/" + path); } module.exports = { @@ -29,14 +28,6 @@ module.exports = { expand: true, cwd: libJasmineCore("") }, - { - src: [ - "console.js" - ], - dest: standaloneLibDir, - expand: true, - cwd: libConsole() - }, { src: [ "boot.js" ], dest: standaloneLibDir, diff --git a/spec/helpers/defineJasmineUnderTest.js b/spec/helpers/defineJasmineUnderTest.js index b586c77a..4996387d 100644 --- a/spec/helpers/defineJasmineUnderTest.js +++ b/spec/helpers/defineJasmineUnderTest.js @@ -3,5 +3,4 @@ // to the Jasmine source files (and not jasmine.js). So re-require window.jasmineUnderTest = jasmineRequire.core(jasmineRequire); jasmineRequire.html(jasmineUnderTest); - jasmineRequire.console(jasmineRequire, jasmineUnderTest); })(); diff --git a/spec/support/jasmine.json b/spec/support/jasmine.json index a6e286df..6f89d24a 100644 --- a/spec/support/jasmine.json +++ b/spec/support/jasmine.json @@ -2,7 +2,6 @@ "spec_dir": "spec", "spec_files": [ "core/**/*.js", - "console/**/*.js", "npmPackage/**/*.js" ], "helpers": [