Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide additional logging capabilities #161

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a7bf937
Update browser.js
EdStrickland Mar 24, 2020
2e56125
Update browser.js
EdStrickland Mar 25, 2020
b9605f3
Update browser.js
EdStrickland Apr 8, 2020
262a7d9
Merge pull request #1 from SAP/master
EdStrickland Apr 23, 2020
ccdef05
Merge pull request #2 from SAP/master
EdStrickland Apr 23, 2020
377d7ff
add integration tests(unfinished)
EdStrickland Apr 23, 2020
66ef536
Merge pull request #3 from EdStrickland/master
EdStrickland Apr 23, 2020
62ca5db
add integration tests and add config initialization
EdStrickland May 6, 2020
5400109
fix eslint
EdStrickland May 6, 2020
51c331b
Update test/integration/application-log-assersion/webapp/test/Gherkin…
EdStrickland May 28, 2020
dde019c
Update test/integration/application-log-assersion/webapp/test/Website…
EdStrickland May 28, 2020
d0d11d8
Update test/integration/application-log-assersion/karma.conf.js
EdStrickland May 28, 2020
98f551a
enhance config and integration tests
EdStrickland Jun 2, 2020
9d37b93
fix bug`
EdStrickland Jun 2, 2020
58b2d1c
fix gitignore
EdStrickland Jun 2, 2020
7bbaa7a
bug fix
EdStrickland Jun 3, 2020
dadbdec
change ui5 resource to relative path
EdStrickland Jun 3, 2020
cc6117b
simplify mock OPA tests
EdStrickland Jun 9, 2020
d9973f5
simplify mock OPA tests
EdStrickland Jun 9, 2020
72ceeef
fix check
EdStrickland Jun 9, 2020
e9f0660
add the flags in readme
EdStrickland Jun 9, 2020
afe9192
Merge branch 'master' into patch-1
EdStrickland Jul 24, 2020
051d588
Merge branch 'master' into patch-1
EdStrickland Oct 20, 2020
d53933b
fix eslint
EdStrickland Oct 20, 2020
e4469d7
add setTimeout
EdStrickland Oct 20, 2020
ad18be1
testDone should log test module and test name instead of test obj
EdStrickland Oct 23, 2020
63f4485
remove test obj from code
EdStrickland Oct 23, 2020
775545d
fix ui5 tooling iframe path assertion fail on windows
EdStrickland Nov 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lib/client/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,14 @@ require("./discovery.js");
});

QUnit.log(function(details) {
const result = {
description: details.message,
suite: details.module && [qunitHtmlFile, details.module, details.name, details.message] || [],
success: details.result,
log: testResult.errors || [],
time: new Date().getTime() - timer
};
karma.result(result);
EdStrickland marked this conversation as resolved.
Show resolved Hide resolved
if (!details.result) {
let msg = "";

Expand Down