diff --git a/test/cli-init.test.js b/test/cli-init.test.js index 4ec9c75..5a123c5 100644 --- a/test/cli-init.test.js +++ b/test/cli-init.test.js @@ -13,6 +13,6 @@ tap.test('Init ->', t => wrapAsync(function*() { t.ok(exists.sync(path.resolve(projectRoot, 'source')), 'with a source dir'); t.ok(exists.sync(path.resolve(projectRoot, 'public')), 'with a public dir'); t.ok(exists.sync(path.resolve(projectRoot, 'pattern_exports')), 'with a pattern_exports dir'); - t.ok(exists.sync(path.resolve(projectRoot, 'patternlab-config.json')), 'with a pattern_exports dir'); + t.ok(exists.sync(path.resolve(projectRoot, 'patternlab-config.json')), 'with a patternlab-config file'); t.end(); }));