Upgrade dependencies (#101)

This commit is contained in:
Joel Purra 2020-01-21 17:56:44 +01:00 committed by Sindre Sorhus
parent aeb3f74d65
commit c842cc260f
4 changed files with 16 additions and 7 deletions

View file

@ -457,7 +457,7 @@ const testType = (t: ExecutionContext, type: string, exclude?: string[]) => {
for (const [key, {fixtures}] of types) {
// TODO: Automatically exclude value types in other tests that we have in the current one.
// Could reduce the use of `exclude`.
if (exclude && exclude.includes(key)) {
if (exclude?.includes(key)) {
continue;
}