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

Commit f7b2d85

Browse files
Kent C. Doddscaitp
Kent C. Dodds
authored andcommitted
test($compile): add test for alternative syntax to get controllers from ancestors
Because the regex that tests the `require` value will match more than just `^^?`, it is important to test other common ways to specify a controller requirement to ensure that a breaking change isn't introduced inadvertently. This adds a test for `?^^`. Closes #9389 Closes #9390
1 parent 391d8c0 commit f7b2d85

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

test/ng/compileSpec.js

+19
Original file line numberDiff line numberDiff line change
@@ -3720,6 +3720,25 @@ describe('$compile', function() {
37203720
});
37213721

37223722

3723+
it('should get required parent controller when the question mark precedes the ^^', function() {
3724+
module(function() {
3725+
directive('nested', function(log) {
3726+
return {
3727+
require: '?^^nested',
3728+
controller: function($scope) {},
3729+
link: function(scope, element, attrs, controller) {
3730+
log(!!controller);
3731+
}
3732+
};
3733+
});
3734+
});
3735+
inject(function(log, $compile, $rootScope) {
3736+
element = $compile('<div nested><div nested></div></div>')($rootScope);
3737+
expect(log).toEqual('true; false');
3738+
});
3739+
});
3740+
3741+
37233742
it('should throw if required parent is not found', function() {
37243743
module(function() {
37253744
directive('nested', function() {

0 commit comments

Comments
 (0)