-
Notifications
You must be signed in to change notification settings - Fork 2.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
Tests Fail with Angular 1.4.* #3658
Comments
Adds unit tests for angular versions 1.3.15 and 1.4.0. 1.3.15 runs fine however 1.4.0 tests do not pass. See: angular-ui#3658
It looks like this is due to breaking changes to We could update the tests here https://github.com/angular-ui/ng-grid/blob/58a27fc5bb798af3cae57be202bfed5017a6f191/src/features/edit/test/uiGridCellWithDropdown.spec.js#L76 to maybe use ngModel rather than directly calling .val() on the select? Or we could just add the "number:" prefix to the expected value. @PaulL1 thoughts? |
I'm fine either way. I note that the value the test is expecting is |
@PaulL1 it is, the changes I linked above show that they altered the way the select's value was being stored. I think it becomes "string:" and "number:" and maybe other things now. That's just for the internal select value and not for the ngModel value. |
Thanks to @c0bra for putting this helpful blog post together: |
E2E Test Failures:
Finished in 201.446 seconds |
Adds support for angular 1.4 Closes angular-ui#3658
I just added angular
1.3.15
and1.4.0
to the automated test suite file.1.3.15
tests run without error1.4.0
tests fail with the following output:I can make a PR with
1.3.15
tests added however I don't want to add1.4.0
because I don't know how to fix the tests.The text was updated successfully, but these errors were encountered: