aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2022-03-15 19:16:56 +0100
committerGitHub <[email protected]>2022-03-15 19:16:56 +0100
commit5cb74b1bf31f44311b4ee54ea320b81f68879f07 (patch)
treebfe4e31ed4384be8b7b47826cf1ceb98227e9100 /test
parent09487b6b3a6e6cc3de0303851b9913ecdf1390dc (diff)
downloadfaker-5cb74b1bf31f44311b4ee54ea320b81f68879f07.tar.xz
faker-5cb74b1bf31f44311b4ee54ea320b81f68879f07.zip
chore: fix some lint warnings (#613)
Co-authored-by: Shinigami <[email protected]>
Diffstat (limited to 'test')
-rw-r--r--test/fake.spec.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fake.spec.ts b/test/fake.spec.ts
index c8223585..d1e18ac4 100644
--- a/test/fake.spec.ts
+++ b/test/fake.spec.ts
@@ -30,7 +30,7 @@ describe('fake', () => {
it('does not allow undefined parameters', () => {
expect(() =>
- // @ts-expect-error
+ // @ts-expect-error: The parameter is required
faker.fake()
).toThrowError(Error('string parameter is required!'));
});