@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
37 lines (28 loc) • 1.12 kB
text/typescript
import { test, assert } from '@sprucelabs/test-utils'
import CommandServiceImpl from '../../../services/CommandService'
import AbstractCliTest from '../../../tests/AbstractCliTest'
import testUtil from '../../../tests/utilities/test.utility'
export default class CreatingASkillTest extends AbstractCliTest {
protected static async beforeEach() {
await super.beforeEach()
CommandServiceImpl.fakeCommand(new RegExp(/npm.*?install .*?/gis), {
code: 0,
})
}
()
protected static async creatingAtADestinationAsksForSkillDetailsOnce() {
const promise = this.Action('skill', 'create', {
shouldAutoHandleDependencies: true,
}).execute({ destination: 'taco' })
await this.waitForInput()
await this.ui.sendInput('adventure')
await this.ui.sendInput('i would not')
const results = await promise
testUtil.assertFileByPathInGeneratedFiles(
/taco\/package\.json/gis,
results.files
)
const { hints } = results
assert.doesInclude(hints, 'cd taco')
}
}