@@ -42,11 +42,27 @@ const options = {
42
42
} satisfies Options ;
43
43
44
44
describe ( "createRerunSuggestion" , ( ) => {
45
+ it ( "prints no options when no options are provided" , ( ) => {
46
+ const actual = createRerunSuggestion ( { } ) ;
47
+
48
+ expect ( actual ) . toMatchInlineSnapshot ( `"npx create-typescript-app"` ) ;
49
+ } ) ;
50
+
51
+ it ( "prints only mode when no other options are provided" , ( ) => {
52
+ const actual = createRerunSuggestion ( {
53
+ mode : "create" ,
54
+ } ) ;
55
+
56
+ expect ( actual ) . toMatchInlineSnapshot (
57
+ `"npx create-typescript-app --mode create"` ,
58
+ ) ;
59
+ } ) ;
60
+
45
61
it ( "includes key-value pairs with mixed truthy and falsy values" , ( ) => {
46
62
const actual = createRerunSuggestion ( options ) ;
47
63
48
64
expect ( actual ) . toMatchInlineSnapshot (
49
- `"npx create-typescript-app --mode create -- base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --mode create --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
65
+ `"npx create-typescript-app --base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --mode create --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
50
66
) ;
51
67
} ) ;
52
68
@@ -57,7 +73,7 @@ describe("createRerunSuggestion", () => {
57
73
} ) ;
58
74
59
75
expect ( actual ) . toMatchInlineSnapshot (
60
- `"npx create-typescript-app --mode create -- base everything --access restricted --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --mode create --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
76
+ `"npx create-typescript-app --base everything --access restricted --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --mode create --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
61
77
) ;
62
78
} ) ;
63
79
@@ -72,7 +88,7 @@ describe("createRerunSuggestion", () => {
72
88
} ) ;
73
89
74
90
expect ( actual ) . toMatchInlineSnapshot (
75
- `"npx create-typescript-app --mode initialize -- base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --guide https://example.com --guide-title "Test Title" --keywords "abc def ghi jkl mno pqr" --mode initialize --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
91
+ `"npx create-typescript-app --base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --guide https://example.com --guide-title "Test Title" --keywords "abc def ghi jkl mno pqr" --mode initialize --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
76
92
) ;
77
93
} ) ;
78
94
@@ -87,7 +103,7 @@ describe("createRerunSuggestion", () => {
87
103
} ) ;
88
104
89
105
expect ( actual ) . toMatchInlineSnapshot (
90
- `"npx create-typescript-app --mode initialize -- base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --logo test/src.png --logo-alt "Test alt." --mode initialize --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
106
+ `"npx create-typescript-app --base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --logo test/src.png --logo-alt "Test alt." --mode initialize --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
91
107
) ;
92
108
} ) ;
93
109
@@ -101,7 +117,7 @@ describe("createRerunSuggestion", () => {
101
117
} ) ;
102
118
103
119
expect ( actual ) . toMatchInlineSnapshot (
104
- `"npx create-typescript-app --mode initialize -- base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-md --exclude-lint-package-json --exclude-lint-perfectionist --exclude-lint-spelling --keywords "abc def ghi jkl mno pqr" --mode initialize --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
120
+ `"npx create-typescript-app --base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-md --exclude-lint-package-json --exclude-lint-perfectionist --exclude-lint-spelling --keywords "abc def ghi jkl mno pqr" --mode initialize --owner TestOwner --repository test-repository --skip-github-api --skip-install --skip-removal --title "Test Title""` ,
105
121
) ;
106
122
} ) ;
107
123
@@ -113,7 +129,7 @@ describe("createRerunSuggestion", () => {
113
129
} ) ;
114
130
115
131
expect ( common ) . toMatchInlineSnapshot (
116
- `"npx create-typescript-app --mode undefined -- base common"` ,
132
+ `"npx create-typescript-app --base common"` ,
117
133
) ;
118
134
} ) ;
119
135
@@ -125,7 +141,20 @@ describe("createRerunSuggestion", () => {
125
141
} ) ;
126
142
127
143
expect ( minimum ) . toMatchInlineSnapshot (
128
- `"npx create-typescript-app --mode undefined --base minimum"` ,
144
+ `"npx create-typescript-app --base minimum"` ,
145
+ ) ;
146
+ } ) ;
147
+
148
+ it ( "does not list API skip flags when --offline is true" , ( ) => {
149
+ const actual = createRerunSuggestion ( {
150
+ ...options ,
151
+ offline : true ,
152
+ skipAllContributorsApi : true ,
153
+ skipGitHubApi : true ,
154
+ } ) ;
155
+
156
+ expect ( actual ) . toMatchInlineSnapshot (
157
+ `"npx create-typescript-app --base everything --author TestAuthor --description "Test description." --directory . --email-github [email protected] --email-npm [email protected] --exclude-all-contributors --exclude-compliance --exclude-lint-jsdoc --exclude-lint-json --exclude-lint-knip --exclude-lint-package-json --exclude-lint-perfectionist --keywords "abc def ghi jkl mno pqr" --mode create --offline --owner TestOwner --repository test-repository --skip-install --skip-removal --title "Test Title""` ,
129
158
) ;
130
159
} ) ;
131
160
} ) ;
0 commit comments