"use strict"; /** * @fileoverview * The `glob` package has no `deep` option. * So emulate it with negative patterns. */ Object.defineProperty(exports, "__esModule", { value: true }); const smoke = require("./smoke"); smoke.suite('Smoke → Deep', [ { pattern: 'fixtures/**', globOptions: { ignore: ['!fixtures/*'] }, fgOptions: { deep: 0 } }, { pattern: 'fixtures/**', globOptions: { ignore: ['!fixtures/{*/,}*'] }, fgOptions: { deep: 2 } } ]); smoke.suite('Smoke → Deep (cwd)', [ { pattern: '**', cwd: 'fixtures', globOptions: { ignore: ['!*'] }, fgOptions: { deep: 0 } }, { pattern: '**', cwd: 'fixtures', globOptions: { ignore: ['!{*/,}*'] }, fgOptions: { deep: 2 } } ]);