Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 29efd39

Browse files
committed
fix(scenario): update to use our angular-scenario.js rather then karma
1 parent 11f712b commit 29efd39

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

karma-e2e.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var angularFiles = require(__dirname + '/angularFiles.js');
22

3-
files = [ANGULAR_SCENARIO, ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs-scenario.js'];
3+
files = ['build/angular-scenario.js', ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs-scenario.js'];
44

55
autoWatch = false;
66
singleRun = true;

src/ngScenario/Application.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ angular.scenario.Application.prototype.navigateTo = function(url, loadFn, errorF
7676
$window.angular.resumeBootstrap([['$provide', function($provide) {
7777
$provide.decorator('$sniffer', function($delegate) {
7878
$delegate.transitions = false;
79+
$delegate.animations = false;
7980
return $delegate;
8081
});
8182
}]]);

0 commit comments

Comments
 (0)