diff --git a/addon-test-support/extend/find-many.js b/addon-test-support/extend/find-many.js index 863f3141..876a9f35 100644 --- a/addon-test-support/extend/find-many.js +++ b/addon-test-support/extend/find-many.js @@ -40,7 +40,7 @@ export function findMany(pageObjectNode, targetSelector, options = {}) { }); const filteredOptions = filterWhitelistedOption(options, [ - 'resetScope', 'visible', 'testContainer', 'contains', 'scope', 'at', 'last', 'exact' + 'resetScope', 'visible', 'testContainer', 'contains', 'scope', 'at', 'last' ]); const opts = Object.assign({}, filteredOptions, { multiple: true }); return getExecutionContext(pageObjectNode).find(targetSelector, opts).get(); diff --git a/addon-test-support/extend/find-one.js b/addon-test-support/extend/find-one.js index ddba1db9..bb8caea3 100644 --- a/addon-test-support/extend/find-one.js +++ b/addon-test-support/extend/find-one.js @@ -38,7 +38,7 @@ import { filterWhitelistedOption } from "../-private/helpers"; */ export function findOne(pageObjectNode, targetSelector, options = {}) { const filteredOptions = filterWhitelistedOption(options, [ - 'resetScope', 'visible', 'testContainer', 'contains', 'at', 'last', 'scope', 'pageObjectKey', 'exact' + 'resetScope', 'visible', 'testContainer', 'contains', 'at', 'last', 'scope', 'pageObjectKey' ]); const opts = Object.assign({}, filteredOptions, { multiple: false }); return getExecutionContext(pageObjectNode).findWithAssert(targetSelector, opts).get(0);