diff --git a/types/frisby/frisby-tests.ts b/types/frisby/frisby-tests.ts
index d0bb27ff20..65a7315790 100644
--- a/types/frisby/frisby-tests.ts
+++ b/types/frisby/frisby-tests.ts
@@ -18,4 +18,9 @@ describe('Test Suite 1', () => {
.expect('status', 418)
.done(done);
});
+
+ it('should handle jest matchers', () => {
+ const str = 'bar';
+ expect(str).toHaveLength(3);
+ });
});
diff --git a/types/frisby/index.d.ts b/types/frisby/index.d.ts
index 1bcd6fdabb..85151daa68 100644
--- a/types/frisby/index.d.ts
+++ b/types/frisby/index.d.ts
@@ -5,7 +5,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
-///
+///
// #region Imports
export import nodeFetch = require('node-fetch'); // Import all definitions from node-fetch.