diff --git a/test/commands/agent/generate/test.nut.ts b/test/commands/agent/generate/test.nut.ts deleted file mode 100644 index 98e4735..0000000 --- a/test/commands/agent/generate/test.nut.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2023, salesforce.com, inc. - * All rights reserved. - * Licensed under the BSD 3-Clause license. - * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause - */ -import { execCmd, TestSession } from '@salesforce/cli-plugins-testkit'; -import { expect } from 'chai'; - -describe('agent generate test NUTs', () => { - let session: TestSession; - - before(async () => { - session = await TestSession.create({ devhubAuthStrategy: 'NONE' }); - }); - - after(async () => { - await session?.clean(); - }); - - it('should display provided name', () => { - const name = 'World'; - const command = `agent generate test --name ${name}`; - const output = execCmd(command, { ensureExitCode: 0 }).shellOutput.stdout; - expect(output).to.contain(name); - }); -});