From 83a6be29033f58f778ace1406232945b7c88a8ed Mon Sep 17 00:00:00 2001 From: Maksim Ryzhikov Date: Sat, 1 Apr 2017 19:52:39 +0300 Subject: [PATCH] chore: remove skipped tests --- test/unit/reporter.spec.js | 6 ------ test/unit/server.spec.js | 5 ----- 2 files changed, 11 deletions(-) diff --git a/test/unit/reporter.spec.js b/test/unit/reporter.spec.js index ec8e05254..2b6f572a6 100644 --- a/test/unit/reporter.spec.js +++ b/test/unit/reporter.spec.js @@ -83,12 +83,6 @@ describe('reporter', () => { expect(formatError('file http://localhost:8080/base/usr/a.js and http://127.0.0.1:8080/absolute/home/b.js')).to.be.equal('file usr/a.js and http://127.0.0.1:8080/home/b.js\n') }) - // TODO(vojta): enable once we serve source under urlRoot - it.skip('should handle non default karma service folders', () => { - formatError = m.createErrorFormatter({ basePath: '' }, '/_karma_/') - expect(formatError('file http://localhost:8080/_karma_/base/usr/a.js and http://localhost:8080/_karma_/base/home/b.js')).to.be.equal('file usr/a.js and home/b.js\n') - }) - it('should remove shas', () => { var ERROR = 'file http://localhost:8080/base/usr/file.js?6e31cb249ee5b32d91f37ea516ca0f84bddc5aa9 and http://127.0.0.1:8080/absolute/home/file.js?6e31cb249ee5b32d91f37ea516ca0f84bddc5aa9' expect(formatError(ERROR)).to.be.equal('file usr/file.js and http://127.0.0.1:8080/home/file.js\n') diff --git a/test/unit/server.spec.js b/test/unit/server.spec.js index 22a1c8987..ec8edef8c 100644 --- a/test/unit/server.spec.js +++ b/test/unit/server.spec.js @@ -234,9 +234,4 @@ describe('server', () => { } }) }) - - describe.skip('singleRun', () => { - it('should run tests when all browsers captured', () => {}) - it('should run tests when first browser captured if no browser configured', () => {}) - }) })