Meir Blachman
Meir Blachman
related to https://github.com/microsoft/playwright/issues/1090
@SimonSiefke I started a repository for these comparisons https://github.com/Meir017/web-testing-frameworks more scenarios coming up...
is this related to the following scenario? ```js (fn1) = function(){} fn2 = function(){} ```  viewing this in [astexplorer.net](https://astexplorer.net/#/gist/8eadd529ddd1d363590d5ec4be58e089/1dc1230ada392bd140fe16b8ccb4058f80a29707) shows identical trees for both 
related babel issue recently fixed - https://github.com/babel/babel/issues/14514 babel has an `extra` property on node objects where this metadata is saved from the PR - 
@kwonoj do I need to make additional changes for v2?
GitHub provides an api for searching anything. The two really useful ones would be [issues ](https://developer.github.com/v3/search/#search-issues)& [code ](https://developer.github.com/v3/search/#search-code) for troubleshooting The repositories & users don't feel like they would add...
@jnyrup @dennisdoomen does this make sense?
All: ```cs public void All(IEnumerable collection, T expected) { Assert.All(collection, x => Assert.Equal(expected, x)); collection.Should().OnlyContain(x => x.Should().Be(expected)); Assert.All(collection, x => Assert.NotEqual(expected, x)); collection.Should().NotContain(x => x.Should().NotBe(expected)); Assert.All(collection, x => Assert.Same(expected, x));...
Collection: ```cs public void Collection(IEnumerable collection, params Action[] elementInspectors) { T expected = default; Assert.Collection(collection, x => Assert.Equal(x, expected), x => Assert.NotEqual(x, expected), x => Assert.Same(x, expected), x => Assert.NotSame(x,...
The simple assertions methods: ```cs public T Throws(Action testCode) where T : Exception { Assert.NotNull(Assert.Throws(testCode)); testCode.Should().ThrowExactly().Which.Should().NotBeNull(); Assert.Throws(testCode); testCode.Should().ThrowExactly(); return default; } public async Task ThrowsAsync(Func testCode) where T : Exception...