|
| 1 | +'use strict' |
| 2 | + |
| 3 | +const { test } = require('ava') |
| 4 | +const execa = require('execa') |
| 5 | +const rmfr = require('rmfr') |
| 6 | + |
| 7 | +const createLibrary = require('./create-library') |
| 8 | + |
| 9 | +const tests = [ |
| 10 | + { |
| 11 | + name: 'my-test-library', |
| 12 | + author: 'nala', |
| 13 | + description: 'this is a auto-generated test module. please ignore.', |
| 14 | + repo: 'nala/my-test-library', |
| 15 | + license: 'MIT', |
| 16 | + manager: 'yarn' |
| 17 | + }, |
| 18 | + { |
| 19 | + name: 'my-test-library', |
| 20 | + author: 'nala', |
| 21 | + description: 'this is a auto-generated test module. please ignore.', |
| 22 | + repo: 'nala/my-test-library', |
| 23 | + license: 'MIT', |
| 24 | + manager: 'npm' |
| 25 | + }, |
| 26 | + { |
| 27 | + name: '@automagical/nala', |
| 28 | + author: 'superstar-cats', |
| 29 | + description: 'this is a auto-generated test module. please ignore.', |
| 30 | + repo: 'superstar-cats/nala', |
| 31 | + license: 'GPL', |
| 32 | + manager: 'yarn' |
| 33 | + } |
| 34 | +] |
| 35 | + |
| 36 | +tests.forEach((info) => { |
| 37 | + test.serial(`creating "${info.name}" using ${info.manager}`, async (t) => { |
| 38 | + console.log(`creating "${info.name}" using ${info.manager}...`) |
| 39 | + // ensure library is created successfully |
| 40 | + const root = await createLibrary(info) |
| 41 | + t.truthy(root.indexOf(info.shortName) >= 0) |
| 42 | + |
| 43 | + // ensure yarn runs successfully |
| 44 | + let ret = await execa.shell('yarn', { cwd: root }) |
| 45 | + t.is(ret.code, 0) |
| 46 | + |
| 47 | + // ensure jest tests pass |
| 48 | + ret = await execa.shell('yarn test', { cwd: root }) |
| 49 | + t.is(ret.code, 0) |
| 50 | + |
| 51 | + // ensure git is initialized properly |
| 52 | + ret = await execa.shell('git status', { cwd: root }) |
| 53 | + t.is(ret.code, 0) |
| 54 | + |
| 55 | + await rmfr(root) |
| 56 | + }) |
| 57 | +}) |
0 commit comments