Tobias Bieniek
Tobias Bieniek
@kiwiupover I don't understand this. Can you give an example of the pattern that the new rule should warn about?
@knownasilya it should be possible to build a wrapper around `find()` and `click()` that does what you're looking for. essentially something like: ```js async clickXY(selector, x, y) { let element...
IMHO a helper like that can make sense when you haven't adopted something like test selectors yet, but as you mentioned having it available directly in this addon would suggest...
sorry, it's been 7 years since I last used this and I'm no longer at a company that uses it :-/
can you check if https://github.com/cli-table/cli-table3/pull/53 fixes your issue? otherwise something like this should also resolve your issue for now: ```ts const table = new Table({ head: ["H1", "H2"] }) as...
there probably are ways to speed it up, it "just" needs someone with a bit of time and knowledge of profiling đ
`ember-cli-mocha` and `ember-mocha` should not be installed at the same time. `ember-cli-mocha` already brings its own `ember-mocha` dependency, but ultimately we should just use `ember-mocha` directly from now on
no, makes sense to check it. though we need to be careful to not warn for the `app -> ember-cli-mocha -> ember-mocha` dependency scenario.
It is sort of stable, but since we're still using an old mocha version I wouldn't want to call it 1.0 until we're using the latest
@fushi where are the `setupComponentTest()` calls in your code?