BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
36def707
Commit
36def707
authored
Feb 07, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-ignored-spec-failures' into 'master'
ensure karma fails if it cannot load all spec files See merge request !9038
parents
0ec91454
8d29e4c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
test_bundle.js
spec/javascripts/test_bundle.js
+6
-2
No files found.
spec/javascripts/test_bundle.js
View file @
36def707
...
...
@@ -34,7 +34,11 @@ testsContext.keys().forEach(function (path) {
try
{
testsContext
(
path
);
}
catch
(
err
)
{
console
.
error
(
'[ERROR] WITH SPEC FILE: '
,
path
);
console
.
error
(
err
);
console
.
error
(
'[ERROR] Unable to load spec: '
,
path
);
describe
(
'Test bundle'
,
function
()
{
it
(
`includes '
${
path
}
'`
,
function
()
{
expect
(
err
).
toBeNull
();
});
});
}
});
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