Skip to content

Commit

Permalink
Drop Ember v1.11/1.12 compatibility code
Browse files Browse the repository at this point in the history
We don't support these old Ember versions anymore, so we can drop this codepath now
  • Loading branch information
Turbo87 committed May 6, 2021
1 parent ceea32d commit fc27e64
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions strip-test-selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ function isTestSelector(attribute) {
}

function stripTestSelectors(node) {
if ('sexpr' in node) {
node = node.sexpr;
}

node.params = node.params.filter(function(param) {
return !isTestSelector(param.original);
});
Expand Down

0 comments on commit fc27e64

Please sign in to comment.