blob: 5b9b22b30632e82c44e50921047740dfdff6aeb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { next } from '../dist/index.js';
import { setup } from './utils.js';
describe('next steps', () => {
const fixture = setup();
it('no arguments', async () => {
await next({ skipHouston: false, cwd: './it/fixtures/not-empty', packageManager: 'npm' });
assert.ok(fixture.hasMessage('Liftoff confirmed.'));
assert.ok(fixture.hasMessage('npm run dev'));
assert.ok(fixture.hasMessage('Good luck out there, astronaut!'));
});
it('--skip-houston', async () => {
await next({ skipHouston: true, cwd: './it/fixtures/not-empty', packageManager: 'npm' });
assert.ok(!fixture.hasMessage('Good luck out there, astronaut!'));
});
});
|