diff --git a/website/docs/matchers/String.mdx b/website/docs/matchers/String.mdx index e5aed1b9..8f53463e 100644 --- a/website/docs/matchers/String.mdx +++ b/website/docs/matchers/String.mdx @@ -2,18 +2,6 @@ import { TestFile } from '../../src/components/CustomSandpack'; # String -### .toBeArray() - -Use `.toBeArray` when checking if a value is an `Array`. - - - {`test('passes when value is an array', () => { - expect([]).toBeArray(); - expect([1]).toBeArray(); - expect(true).not.toBeArray(); -});`} - - ### .toBeString() Use `.toBeString` when checking if a value is a `String`.