-
Notifications
You must be signed in to change notification settings - Fork 150
1.5 browser testing migrated to karma #310
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
1.5 browser testing migrated to karma #310
Conversation
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.
@ali-ince changes look good to me. Made couple small comments. Also we probably need license headers for added js files.
gulpfile.babel.js
Outdated
}, cb).start(); | ||
}); | ||
|
||
gulp.task('run-browser-edge', function(cb){ |
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.
Maybe run-browser-test-edge
as others?
package.json
Outdated
"karma-firefox-launcher": "^1.0.1", | ||
"karma-ie-launcher": "^1.0.0", | ||
"karma-jasmine": "^1.1.0", | ||
"karma-spec-reporter": "0.0.31", |
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.
Is it important to not add ^
in version here?
Migration of browser-based tests from
gulp-jasmine-browser
tokarma
. Removedphantomjs
dependency and added required configuration forfirefox
&chrome
based headless browsers. Currently, tests are run only onfirefox
because of a server based test failure onchrome
.