Skip to content

Commit

Permalink
Fix typo (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Jan 17, 2022
1 parent 7833ad5 commit 2c9cc27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.js
Expand Up @@ -329,13 +329,13 @@ test('respects gitignore option false - stream', async t => {
t.true(actual.includes('node_modules'));
});

test('gitingore option and objectMode option - async', async t => {
test('gitignore option and objectMode option - async', async t => {
const result = await globby('fixtures/gitignore/*', {gitignore: true, objectMode: true});
t.is(result.length, 1);
t.truthy(result[0].path);
});

test('gitingore option and objectMode option - sync', t => {
test('gitignore option and objectMode option - sync', t => {
const result = globbySync('fixtures/gitignore/*', {gitignore: true, objectMode: true});
t.is(result.length, 1);
t.truthy(result[0].path);
Expand Down

0 comments on commit 2c9cc27

Please sign in to comment.