Skip to content

Commit

Permalink
Merge pull request #2643 from maksimr/chore-remove-pending-tests
Browse files Browse the repository at this point in the history
chore: remove skipped tests
  • Loading branch information
dignifiedquire authored Apr 5, 2017
2 parents b1de55f + 83a6be2 commit 332ac4b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
6 changes: 0 additions & 6 deletions test/unit/reporter.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
5 changes: 0 additions & 5 deletions test/unit/server.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {})
})
})

0 comments on commit 332ac4b

Please sign in to comment.