-
Notifications
You must be signed in to change notification settings - Fork 6.8k
feat(cdk/testing): Allow custom querySelectorAll
method
#18178
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
22d03b2
feat(cdk/testing): Allow custom `querySelectorAll` method
mmalerba a61a4fd
fix lint and tests
mmalerba 1f085e6
exclude shadow dom tests on browsers that don't support it
mmalerba dffaf23
WIP: trying to fix import paths for gulp
mmalerba a2a27c3
stop using ng-content
mmalerba 8062fe7
WIP: attempt to get protractor working
mmalerba 965a9a9
make protractor tests work
mmalerba db04610
address comments
mmalerba c825190
address feedback
mmalerba 4e211e5
fix lint and api check
mmalerba 9514f29
change lint to allow long urls
mmalerba 7cf853a
exclude kagekiri declarations from release
mmalerba 7d2a814
expand type of queryFn
mmalerba 1dba1d5
remove use of `+` selector
mmalerba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Require.js is being used by the karma bazel rules and needs to be configured to properly | ||
// load AMD modules which are not explicitly named in their output bundle. | ||
require.config({ | ||
paths: { | ||
'kagekiri': '/base/npm/node_modules/kagekiri/dist/kagekiri.umd.min', | ||
} | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
// Note: kagekiri is a dev dependency that is used only in our tests to test using a custom | ||
// querySelector function. Do not use this in published code. | ||
declare module 'kagekiri' { | ||
export function querySelectorAll(selector: string, root: Element): NodeListOf<Element>; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'test-shadow-boundary', | ||
template: ` | ||
<div class="in-the-shadows">Shadow 1</div> | ||
<test-sub-shadow-boundary></test-sub-shadow-boundary> | ||
`, | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
// tslint:disable-next-line:validate-decorators | ||
encapsulation: ViewEncapsulation.ShadowDom, | ||
}) | ||
export class TestShadowBoundary {} | ||
|
||
@Component({ | ||
selector: 'test-sub-shadow-boundary', | ||
template: '<div class="in-the-shadows">Shadow 2</div>', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
// tslint:disable-next-line:validate-decorators | ||
encapsulation: ViewEncapsulation.ShadowDom, | ||
}) | ||
export class TestSubShadowBoundary {} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.