Removed remaining jshint config comments

This commit is contained in:
Steve Gravrock
2022-06-02 18:16:16 -07:00
parent 18a00822c5
commit a5f79fac81
8 changed files with 12 additions and 20 deletions

View File

@@ -104,7 +104,9 @@ describe('toBeInstanceOf', function() {
});
it('passes for an async function', function() {
const fn = eval("(async function fn() { return 'foo'; })");
async function fn() {
return 'foo';
}
const matcher = jasmineUnderTest.matchers.toBeInstanceOf();
const result = matcher.compare(fn, Function);