test: fix coveralls coverage

This commit is contained in:
Rhys Arkins 2020-04-14 19:04:46 +02:00
parent edb4c0abfe
commit 7f652315a3
3 changed files with 12 additions and 22 deletions

View file

@ -42,7 +42,7 @@ exports[`config/presets/local getPreset() forwards to github 1`] = `
Array [ Array [
Array [ Array [
"some/repo", "some/repo",
"", "default",
Object { Object {
"platform": "github", "platform": "github",
}, },

View file

@ -42,7 +42,7 @@ describe('config/presets/local', () => {
}); });
it('forwards to github', async () => { it('forwards to github', async () => {
const content = await local.getPreset('some/repo', '', { const content = await local.getPreset('some/repo', undefined, {
platform: 'github', platform: 'github',
}); });
expect(githubGetPreset.mock.calls).toMatchSnapshot(); expect(githubGetPreset.mock.calls).toMatchSnapshot();

View file

@ -126,12 +126,9 @@ export async function generateLockFile(
cwd, cwd,
env, env,
}); });
stdout += updateRes.stdout // istanbul ignore next
? /* istanbul ignore next */ updateRes.stdout stdout += updateRes.stdout || '';
: ''; stderr += updateRes.stderr || '';
stderr += updateRes.stderr
? /* istanbul ignore next */ updateRes.stderr
: '';
} }
if (yarnMajorVersion < 2) { if (yarnMajorVersion < 2) {
@ -146,12 +143,9 @@ export async function generateLockFile(
cwd, cwd,
env, env,
}); });
stdout += dedupeRes.stdout // istanbul ignore next
? /* istanbul ignore next */ dedupeRes.stdout stdout += dedupeRes.stdout || '';
: ''; stderr += dedupeRes.stderr || '';
stderr += dedupeRes.stderr
? /* istanbul ignore next */ dedupeRes.stderr
: '';
} }
if ( if (
config.postUpdateOptions && config.postUpdateOptions &&
@ -164,17 +158,13 @@ export async function generateLockFile(
cwd, cwd,
env, env,
}); });
stdout += dedupeRes.stdout // istanbul ignore next
? /* istanbul ignore next */ dedupeRes.stdout stdout += dedupeRes.stdout || '';
: ''; stderr += dedupeRes.stderr || '';
stderr += dedupeRes.stderr
? /* istanbul ignore next */ dedupeRes.stderr
: '';
} }
} else if ( } else if (
config.postUpdateOptions && config.postUpdateOptions &&
(config.postUpdateOptions.includes('yarnDedupeFewer') || config.postUpdateOptions.some((option) => option.startsWith('yarnDedupe'))
config.postUpdateOptions.includes('yarnDedupeHighest'))
) { ) {
logger.warn('yarn-deduplicate is not supported since yarn 2'); logger.warn('yarn-deduplicate is not supported since yarn 2');
} }