Ben Hauch

Results 14 issues of Ben Hauch

**Environment (please complete the following information):** - **WebdriverIO version:** 7.10.1 - **Mode:** WDIO testrunner - **If WDIO Testrunner, running sync/async:** sync - **Node.js version:** v14.17.3 - **NPM version:** 6.14.13 -...

Needs Investigation
help wanted

**Environment (please complete the following information):** - **WebdriverIO version:** 7.10.1 (commit SHA edb4fcb6264dde85713339bcd03a2ca8eca81643) - **Mode:** WDIO Testrunner - **If WDIO Testrunner, running sync/async:** sync - **Node.js version:** 14.17.3 - **NPM...

Bug 🐛
help wanted
wdio-sync

Repro: ```js import { computed } from '@ember/object'; import Component from '@ember/component'; const keys = ['prop']; // could change at runtime const frozenKeys = Object.freeze(keys); // definitely not changing export...

Bug

Ember 3.24 ESlint v7.31 eslint-plugin-ember v10.5.1 While evaluating this rule on apps at work, I discovered it triggered in the following scenario: ```js import Component from '@glimmer/component'; import { inject...

Bug

When a dependency has been symlinked into a monorepo application, and this dependency is hoisted to the monorepo root, the dependency's `tasks/` folder cannot be located by `grunt.loadNpmTasks` due to...

enhancement

The current CICD steps and `npm test` script only use Google Chrome for testing, but this package purports to have extreme backwards compatibility. The CICD process should reflect that, to...

The use of ember-validators >4 in #715 removed the ability to specify `'now'` and `'precision'` unnecessarily, and presents a huge pain point for consumers that generate their validations at the...

```js import $ from "jquery"; const $el = $("#item"); $el.on("click", () => this.handle()); ``` passes, but it should fail. ```js import $ from "jquery"; const $parent = $("Click Me"); $parent.find("button").on("click",...

bug

Resolves https://github.com/adopted-ember-addons/ember-cp-validations/issues/723 . Changes proposed: - reimplements the date validator that was removed in https://github.com/rwwagner90/ember-validators/pull/100/ I still think it would be better to support a consumer-defined "use luxon" or "use...

Ember v3.24 polyfill v0.1.3 If I create a component that has a private getter, attempting to use the cached decorator results in a build error: ```js import Component from '@glimmer/component';...