Last change
on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
856 bytes
|
Line | |
---|
1 | // Override the Karma setup for local debugging
|
---|
2 | window.__karma__.info = function (info) {
|
---|
3 | if (info.dump && window.console) window.console.log(info.dump)
|
---|
4 | }
|
---|
5 | window.__karma__.complete = function () {
|
---|
6 | if (window.console) window.console.log('Skipped ' + this.skipped + ' tests')
|
---|
7 | }
|
---|
8 | window.__karma__.skipped = 0
|
---|
9 | window.__karma__.result = window.console ? function (result) {
|
---|
10 | if (result.skipped) {
|
---|
11 | this.skipped++
|
---|
12 | return
|
---|
13 | }
|
---|
14 | var msg = result.success ? 'SUCCESS ' : 'FAILED '
|
---|
15 | window.console.log(msg + result.suite.join(' ') + ' ' + result.description)
|
---|
16 |
|
---|
17 | for (var i = 0; i < result.log.length; i++) {
|
---|
18 | // Printing error without losing stack trace
|
---|
19 | (function (err) {
|
---|
20 | setTimeout(function () {
|
---|
21 | window.console.error(err)
|
---|
22 | })
|
---|
23 | })(result.log[i])
|
---|
24 | }
|
---|
25 | } : function () {}
|
---|
26 | window.__karma__.loaded = function () {
|
---|
27 | this.start()
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.