From 5c89bc7df3f1ef175593594b616e4658ac5114e8 Mon Sep 17 00:00:00 2001 From: Momo Kornher Date: Tue, 5 Nov 2024 12:44:23 +0000 Subject: [PATCH] fix formatting --- tools/@aws-cdk/yargs-gen/test/cli.test.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tools/@aws-cdk/yargs-gen/test/cli.test.ts b/tools/@aws-cdk/yargs-gen/test/cli.test.ts index b99156b4fa2ea..d6c99e849664b 100644 --- a/tools/@aws-cdk/yargs-gen/test/cli.test.ts +++ b/tools/@aws-cdk/yargs-gen/test/cli.test.ts @@ -1,20 +1,20 @@ -import { CliConfig, renderYargs } from "../lib"; +import { CliConfig, renderYargs } from '../lib'; -describe("render", () => { - test("can generate global options", async () => { +describe('render', () => { + test('can generate global options', async () => { const config: CliConfig = { globalOptions: { one: { - type: "string", - alias: "o", - desc: "text for one", + type: 'string', + alias: 'o', + desc: 'text for one', requiresArg: true, }, - two: { type: "number", desc: "text for two" }, + two: { type: 'number', desc: 'text for two' }, three: { - type: "array", - alias: "t", - desc: "text for three", + type: 'array', + alias: 't', + desc: 'text for three', nargs: 1, requiresArg: true, },