|
| 1 | +import { spawnSync } from 'node:child_process'; |
| 2 | +import { promises as fs } from 'node:fs'; |
| 3 | +import path from 'node:path'; |
| 4 | + |
| 5 | +describe('automatic setup', () => { |
| 6 | + const starterPath = path.resolve(__dirname, '../.test'); |
| 7 | + test.sequential('creation', async () => { |
| 8 | + await fs.rm(starterPath, { recursive: true }); |
| 9 | + |
| 10 | + const createEmailProcess = spawnSync( |
| 11 | + 'node', |
| 12 | + [path.resolve(__dirname, './index.js'), '.test'], |
| 13 | + { |
| 14 | + shell: true, |
| 15 | + cwd: path.resolve(__dirname, '../'), |
| 16 | + stdio: 'pipe', |
| 17 | + }, |
| 18 | + ); |
| 19 | + if (createEmailProcess.stderr) { |
| 20 | + console.log(createEmailProcess.stderr.toString()); |
| 21 | + } |
| 22 | + expect(createEmailProcess.status, 'starter creation should return 0').toBe( |
| 23 | + 0, |
| 24 | + ); |
| 25 | + }); |
| 26 | + |
| 27 | + test.sequential('export', () => { |
| 28 | + const exportProcess = spawnSync('npm', ['run export'], { |
| 29 | + shell: true, |
| 30 | + cwd: starterPath, |
| 31 | + stdio: 'pipe', |
| 32 | + }); |
| 33 | + if (exportProcess.stderr) { |
| 34 | + console.log(exportProcess.stderr.toString()); |
| 35 | + } |
| 36 | + expect(exportProcess.status, 'export should return status code 0').toBe(0); |
| 37 | + }); |
| 38 | + |
| 39 | + test.sequential('type checking', () => { |
| 40 | + const typecheckingProcess = spawnSync('npx', ['tsc'], { |
| 41 | + shell: true, |
| 42 | + cwd: starterPath, |
| 43 | + stdio: 'pipe', |
| 44 | + }); |
| 45 | + if (typecheckingProcess.stderr) { |
| 46 | + console.log(typecheckingProcess.stderr.toString()); |
| 47 | + } |
| 48 | + if (typecheckingProcess.stdout) { |
| 49 | + console.log(typecheckingProcess.stdout.toString()); |
| 50 | + } |
| 51 | + expect( |
| 52 | + typecheckingProcess.status, |
| 53 | + 'type checking should return status code 0', |
| 54 | + ).toBe(0); |
| 55 | + }); |
| 56 | +}); |
0 commit comments