Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgrain committed Nov 5, 2024
1 parent 7fb285d commit 5c89bc7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tools/@aws-cdk/yargs-gen/test/cli.test.ts
Original file line number Diff line number Diff line change
@@ -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,
},
Expand Down

0 comments on commit 5c89bc7

Please sign in to comment.