Ben Demboski
Ben Demboski
I meant that ```js test('parent', async (t) => { t.afterEach((c) => console.log('parent after each', c.name)); t.after((c) => console.log('parent after', c.name)); await t.test('child', async (t) => { t.afterEach((c) => console.log('child after...
@locks I didn't -- this one fell off my radar after we worked around it by instructing `ember-electron` users to run the blueprint manually. I don't know if it's still...
Continuing this discussion after speaking with @mansona and the tooling team today: # The working proposal It sounds like we're going to iterate on this to allow the configuration of...
It also looks like we'd need to add something like ```ts declare global { interface Assert { dom(target?: IDOMElementDescriptor, rootElement?: Element): DOMAssertions; } } ``` where the integration happens in...
This PR does change existing error messages, as can be seen from the tests, which isn't an explicit goal of this change. Here's the explanation. If an assertion couldn't find...
This should probably also expose whether the user explicitly opted in/out (as opposed to simply accepting the default), so it can be used to address https://github.com/emberjs/ember.js/issues/16849.
> looks like this is the only thing that needs swapped out for webdriver usage: https://github.com/bendemboski/fractal-page-object/blob/main/packages/fractal-page-object/src/-private/dom-query.ts Yeah, I think that and probably something about how [getRoot](https://github.com/bendemboski/fractal-page-object/blob/main/packages/fractal-page-object/src/-private/root.ts) works, but in principle...
I just merged #7 that encapsulates all of the querying in the DOMQuery class, which moves us closer to this. I thought a bit about how it might look to...
I committed some unit tests that reproduce this issue to https://github.com/bendemboski/django-tastypie-mongoengine/tree/Issue58.
As far as the URL for my resources, I assume you mean the contents of the refs ReferencedListField? I'd just expect them to be the resource URLs of the ReferredResources...