-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
test: update tests to use qunit 2 assert format #4753
Conversation
6a43ed7
to
9825b0d
Compare
Yup, still broken. Not sure why one of the travises passed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we revert the package-lock and package.json changes, we can pull in these changes.
test/index.html
Outdated
<link rel="stylesheet" href="../build/temp/video-js.min.css"> | ||
</head> | ||
<body> | ||
<div id="qunit"></div> | ||
<script src="../node_modules/qunitjs/qunit/qunit.js"></script> | ||
<script src="../node_modules/qunit/qunit/qunit.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should these urls be reverted as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
ok everything regarding the version update/name change should be reverted now. |
Description
We cannot change the package name from
qunitjs
toqunit
at this time askarma-qunit
does not supportqunit
only thequnitjs
package name.See: karma-runner/karma-qunit#98
Previously we stopped using an updated qunit as it did not support ie8. This may still be the case and we may not want to update qunit here at all.
This only came up because I wanted to use
Qunit.timeout
in somesourceset
tests, but it isn't supported pre v2.