Skip to content

Commit e739798

Browse files
committed
Document test dependency on bootstrap version
1 parent 8a920d2 commit e739798

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/demo/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ myDemoApp.config(['formRoutesProvider', function (formRoutes) {
2323

2424
formsAngular.config(['urlServiceProvider', 'cssFrameworkServiceProvider', function (urlService, cssFrameworkService) {
2525
urlService.setOptions({html5Mode: false, hashPrefix: '!'});
26-
cssFrameworkService.setOptions({framework: 'bs2'}); // Unit and e2e tests depend on this being bs2
26+
cssFrameworkService.setOptions({framework: 'bs2'}); // e2e tests depend on this being bs2
2727
}]);

app/js/services/css-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ formsAngular.provider('cssFrameworkService', [function () {
55
// bs2 = Twitter Bootstrap 2.3.2 (default)
66
// bs3 = Bootstrap 3.1.1
77
var config = {
8-
framework: 'bs2'
8+
framework: 'bs2' // Unit tests depend on this being bs2
99
};
1010

1111
return {

0 commit comments

Comments
 (0)