Skip to content

Instantly share code, notes, and snippets.

View ariel-symphony's full-sized avatar

Ariel Weingarten ariel-symphony

  • Symphony Commerce
View GitHub Profile
@ariel-symphony
ariel-symphony / conf.js
Created November 17, 2015 23:34
Disable animations for Protractor testing
onPrepare: function() {
var disableNgAnimate = function() {
angular
.module('disableNgAnimate', [])
.run(['$animate', function($animate) {
$animate.enabled(false);
}]);
};
var disableCssAnimate = function() {