Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
c5224f05
Unverified
Commit
c5224f05
authored
Jun 23, 2020
by
Robert Knight
Committed by
GitHub
Jun 23, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2263 from hypothesis/karma-test-debugging
Log which tests have executed during CI runs
parents
dc721b21
556b1a10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
karma.config.js
src/karma.config.js
+8
-3
No files found.
src/karma.config.js
View file @
c5224f05
...
...
@@ -8,6 +8,9 @@ const glob = require('glob');
let
chromeFlags
=
[];
// Output only summary and errors in development to make output easier to parse.
let
mochaOutputMode
=
'minimal'
;
process
.
env
.
CHROME_BIN
=
require
(
'puppeteer'
).
executablePath
();
// On Travis and in Docker, the tests run as root, so the sandbox must be
...
...
@@ -34,6 +37,10 @@ if (process.env.TRAVIS || process.env.RUNNING_IN_DOCKER) {
chromeFlags
.
push
(
'--trace-startup'
);
chromeFlags
.
push
(
'--trace-startup-duration=7'
);
chromeFlags
.
push
(
`--trace-startup-file=
${
traceFile
}
`
);
// Log test details as they are executed so we can tell where test execution
// got to if a failure happens.
mochaOutputMode
=
'full'
;
}
if
(
process
.
env
.
RUNNING_IN_DOCKER
)
{
...
...
@@ -146,9 +153,7 @@ module.exports = function (config) {
// See https://www.npmjs.com/package/karma-mocha-reporter#showdiff
showDiff
:
true
,
// Output only summary and errors in development to make output easier
// to parse.
output
:
'minimal'
,
output
:
mochaOutputMode
,
},
coverageIstanbulReporter
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment