|
1 | 1 | import { describe, expect, it } from "vitest";
|
2 | 2 |
|
| 3 | +import { Options } from "../shared/types.js"; |
3 | 4 | import { createRerunSuggestion } from "./createRerunSuggestion.js";
|
4 | 5 |
|
| 6 | +const options = { |
| 7 | + author: "TestAuthor", |
| 8 | + base: "everything", |
| 9 | + createRepository: true, |
| 10 | + description: "Test description.", |
| 11 | + |
| 12 | + excludeCompliance: true, |
| 13 | + excludeContributors: true, |
| 14 | + excludeLintJson: true, |
| 15 | + excludeLintKnip: true, |
| 16 | + excludeLintMd: false, |
| 17 | + excludeLintPackageJson: true, |
| 18 | + excludeLintPackages: false, |
| 19 | + excludeLintPerfectionist: true, |
| 20 | + excludeLintSpelling: false, |
| 21 | + excludeLintYml: false, |
| 22 | + excludeReleases: false, |
| 23 | + excludeRenovate: undefined, |
| 24 | + excludeTests: undefined, |
| 25 | + funding: undefined, |
| 26 | + logo: undefined, |
| 27 | + owner: "TestOwner", |
| 28 | + repository: "test-repository", |
| 29 | + skipGitHubApi: true, |
| 30 | + skipInstall: true, |
| 31 | + skipRemoval: true, |
| 32 | + skipRestore: undefined, |
| 33 | + skipUninstall: undefined, |
| 34 | + title: "Test Title", |
| 35 | +} satisfies Options; |
| 36 | + |
5 | 37 | describe("createRerunSuggestion", () => {
|
6 | 38 | it("includes key-value pairs with mixed truthy and falsy values", () => {
|
| 39 | + const actual = createRerunSuggestion("initialize", options); |
| 40 | + |
| 41 | + expect(actual).toMatchInlineSnapshot( |
| 42 | + '"npx create-typescript-app --mode initialize --author TestAuthor --base everything --create-repository true --description \\"Test description.\\" --email [email protected] --exclude-compliance true --exclude-contributors true --exclude-lint-json true --exclude-lint-knip true --exclude-lint-package-json true --exclude-lint-perfectionist true --owner TestOwner --repository test-repository --skip-github-api true --skip-install true --skip-removal true --title \\"Test Title\\""', |
| 43 | + ); |
| 44 | + }); |
| 45 | + |
| 46 | + it("includes stringified logo when it exists", () => { |
7 | 47 | const actual = createRerunSuggestion("initialize", {
|
8 |
| - author: "TestAuthor", |
9 |
| - base: "everything", |
10 |
| - createRepository: true, |
11 |
| - description: "Test description.", |
12 |
| - |
| 48 | + ...options, |
| 49 | + logo: { |
| 50 | + alt: "Test alt.", |
| 51 | + src: "test/src.png", |
| 52 | + }, |
| 53 | + }); |
| 54 | + |
| 55 | + expect(actual).toMatchInlineSnapshot( |
| 56 | + '"npx create-typescript-app --mode initialize --author TestAuthor --base everything --create-repository true --description \\"Test description.\\" --email [email protected] --exclude-compliance true --exclude-contributors true --exclude-lint-json true --exclude-lint-knip true --exclude-lint-package-json true --exclude-lint-perfectionist true --logo test/src.png --owner TestOwner --repository test-repository --skip-github-api true --skip-install true --skip-removal true --title \\"Test Title\\" --logo-alt \\"Test alt.\\""', |
| 57 | + ); |
| 58 | + }); |
| 59 | + |
| 60 | + it("includes exclusions when they exist", () => { |
| 61 | + const actual = createRerunSuggestion("initialize", { |
| 62 | + ...options, |
13 | 63 | excludeCompliance: true,
|
14 |
| - excludeContributors: true, |
15 |
| - excludeLintJson: true, |
16 |
| - excludeLintKnip: true, |
17 |
| - excludeLintMd: false, |
18 |
| - excludeLintPackageJson: true, |
19 |
| - excludeLintPackages: false, |
20 |
| - excludeLintPerfectionist: true, |
21 |
| - excludeLintSpelling: false, |
22 |
| - excludeLintYml: false, |
23 |
| - excludeReleases: false, |
24 |
| - excludeRenovate: undefined, |
25 |
| - excludeTests: undefined, |
26 |
| - funding: undefined, |
27 |
| - owner: "TestOwner", |
28 |
| - repository: "test-repository", |
29 |
| - skipGitHubApi: true, |
30 |
| - skipInstall: true, |
31 |
| - skipRemoval: true, |
32 |
| - skipRestore: undefined, |
33 |
| - skipUninstall: undefined, |
34 |
| - title: "Test Title", |
| 64 | + excludeLintMd: true, |
| 65 | + excludeLintSpelling: true, |
35 | 66 | });
|
36 | 67 |
|
37 | 68 | expect(actual).toMatchInlineSnapshot(
|
38 |
| - '"npx create-typescript-app --mode initialize --author TestAuthor --base everything --create-repository true --description \\"Test description.\\" --email [email protected] --exclude-compliance true --exclude-contributors true --exclude-lint-json true --exclude-lint-knip true --exclude-lint-package-json true --exclude-lint-perfectionist true --owner TestOwner --repository test-repository --skip-github-api true --skip-install true --skip-removal true --title \\"Test Title\\""', |
| 69 | + '"npx create-typescript-app --mode initialize --author TestAuthor --base everything --create-repository true --description \\"Test description.\\" --email [email protected] --exclude-compliance true --exclude-contributors true --exclude-lint-json true --exclude-lint-knip true --exclude-lint-md true --exclude-lint-package-json true --exclude-lint-perfectionist true --exclude-lint-spelling true --owner TestOwner --repository test-repository --skip-github-api true --skip-install true --skip-removal true --title \\"Test Title\\""', |
39 | 70 | );
|
40 | 71 | });
|
41 | 72 | });
|
0 commit comments