We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2c667 commit c0faa7cCopy full SHA for c0faa7c
x-pack/plugins/security_solution/server/graphql/source_status/resolvers.test.ts
@@ -7,12 +7,12 @@
7
import { filterIndexes } from './resolvers';
8
9
describe('resolvers', () => {
10
- test('it should filter single index that is has an empty string', () => {
+ test('it should filter single index that has an empty string', () => {
11
const emptyArray = filterIndexes(['']);
12
expect(emptyArray).toEqual([]);
13
});
14
15
- test('it should filter single index that is has blanks within it', () => {
+ test('it should filter single index that has blanks within it', () => {
16
const emptyArray = filterIndexes([' ']);
17
18
0 commit comments