Bryan Forbes

Results 81 comments of Bryan Forbes

I think `.setAvailableBundles()` would be a great addition as well as `.getBundleName()` to avoid having to do `new Cldr(navigation.langauge).attributes.bundle` to get the bundle name.

> I know it may sound unrelated. But, could you both share with me your development stack? I mean, how do you organize your files, what tooling do you use...

IMO, doing a deep clone of the returned data is the right thing to do. The ability of another library to modify the internal data structures of an instance of...

Currently, there are two ways to solve this problem with `karma-systemjs`. The first is to add `bundles` and `meta` configuration in either your SystemJS config file, or in the `systemjs.config`...

I spoke too soon on the second method I outlined above. It doesn't quite work as easily as that. The bundles are going to be included on the page before...

The problem I've had with Sinon's AMD support is that it only really works in the built version, so you have to configure the loader to point to `sinon/pkg/sinon`. As...

I’m not opposed to leaving `find(strategy: string, value: string)` as long as the strategy values are typed in the `.d.ts` file (they aren’t currently). But the reusability of selectors (and...

I came up with a pretty [simple proof of concept](https://github.com/bryanforbes/intern-angular/blob/1c49f54a31d87faeb24506f4052792305a8ef95f/e2e/pages/locators.ts) today and [updated some functional tests](https://github.com/bryanforbes/intern-angular/blob/1c49f54a31d87faeb24506f4052792305a8ef95f/e2e/pages/Home.ts#L12-L16) to use it. Let me know what you think.

I was simulating what protractor has, but we don’t need to do that. I think having it in a `By` constant (or something similarly named) makes it read better: ```ts...

Thanks for doing this, @althonos. You beat me to it :).