22
33exports [` cached template integration tests first clone with variable replacement should snapshot created directory structure 1` ] = `
44[
5- "module/",
6- "module/README.md",
7- "module/__tests__/",
8- "module/__tests__/basic.test.ts",
9- "module/jest.config.js",
10- "module/package.json",
11- "workspace/",
12- "workspace/.eslintrc.json",
13- "workspace/.github/",
14- "workspace/.github/run-tests.yaml",
15- "workspace/.gitignore",
16- "workspace/.prettierrc.json",
17- "workspace/.vscode/",
18- "workspace/.vscode/settings.json",
19- "workspace/LICENSE",
20- "workspace/Makefile",
21- "workspace/README.md",
22- "workspace/bin/",
23- "workspace/bin/install.sh",
24- "workspace/docker-compose.yml",
25- "workspace/launchql.json",
26- "workspace/lerna.json",
27- "workspace/package.json",
28- "workspace/pnpm-workspace.yaml",
29- "workspace/tsconfig.json",
5+ "LICENSE",
6+ "README.md",
7+ "__tests__/",
8+ "__tests__/basic.test.ts",
9+ "jest.config.js",
10+ "package.json",
3011]
3112` ;
3213
3314exports [` cached template integration tests first clone with variable replacement should snapshot package.json files if they exist 1` ] = `
3415{
35- " module/ package.json" : {
36- " author" : " ____fullName____ <____email____ >" ,
16+ " package.json" : {
17+ " author" : " Test User test <[email protected] >" , 3718 " bugs" : {
38- " url" : " https://github.com/____username____/____repoName____ /issues" ,
19+ " url" : " https://github.com/Test User test/Test User test /issues" ,
3920 },
40- " description" : " ____moduleDesc____ " ,
21+ " description" : " Test Module test " ,
4122 " devDependencies" : {
4223 " pgsql-test" : " ^2.13.2" ,
4324 },
44- " homepage" : " https://github.com/____username____/____repoName____ " ,
25+ " homepage" : " https://github.com/Test User test/Test User test " ,
4526 " keywords" : [],
46- " license" : " ____license____ " ,
47- " name" : " ____packageIdentifier____ " ,
27+ " license" : " MIT " ,
28+ " name" : " integration-test " ,
4829 " pnpm" : {
4930 " overrides" : {
5031 " graphql" : " 14.7.0" ,
5132 },
5233 },
5334 " publishConfig" : {
54- " access" : " ____access____ " ,
35+ " access" : " public " ,
5536 " directory" : " dist" ,
5637 },
5738 " repository" : {
5839 " type" : " git" ,
59- " url" : " https://github.com/____username____/____repoName____ " ,
40+ " url" : " https://github.com/Test User test/Test User test " ,
6041 },
6142 " scripts" : {
6243 " lint" : " eslint . --fix" ,
@@ -65,108 +46,47 @@ exports[`cached template integration tests first clone with variable replacement
6546 },
6647 " version" : " 0.0.1" ,
6748 },
68- " workspace/package.json" : {
69- " author" : " ____fullName____ <____email____>" ,
70- " devDependencies" : {
71- " @types/jest" : " ^29.5.14" ,
72- " @types/node" : " ^22.10.2" ,
73- " @typescript-eslint/eslint-plugin" : " ^8.15.0" ,
74- " @typescript-eslint/parser" : " ^8.15.0" ,
75- " eslint" : " ^9.13.0" ,
76- " eslint-config-prettier" : " ^10.1.1" ,
77- " eslint-plugin-simple-import-sort" : " ^12.1.1" ,
78- " eslint-plugin-unused-imports" : " ^4.3.0" ,
79- " jest" : " ^29.7.0" ,
80- " lerna" : " ^8.2.4" ,
81- " pgsql-test" : " ^2.13.2" ,
82- " prettier" : " ^3.3.3" ,
83- " ts-jest" : " ^29.2.5" ,
84- " ts-node" : " ^10.9.2" ,
85- " typescript" : " ^5.6.3" ,
86- },
87- " license" : " SEE LICENSE IN LICENSE" ,
88- " name" : " ____moduleName____" ,
89- " pnpm" : {
90- " overrides" : {
91- " graphql" : " 14.7.0" ,
92- },
93- },
94- " private" : true ,
95- " publishConfig" : {
96- " access" : " restricted" ,
97- },
98- " repository" : {
99- " type" : " git" ,
100- " url" : " https://github.com/____username____/____moduleName____" ,
101- },
102- " scripts" : {
103- " lint" : " pnpm -r run lint" ,
104- },
105- " version" : " 0.0.1" ,
106- " workspaces" : [
107- " packages/*" ,
108- ],
109- },
11049}
11150` ;
11251
11352exports [` cached template integration tests second clone from cache should snapshot created directory structure from cache 1` ] = `
11453[
115- "module/",
116- "module/README.md",
117- "module/__tests__/",
118- "module/__tests__/basic.test.ts",
119- "module/jest.config.js",
120- "module/package.json",
121- "workspace/",
122- "workspace/.eslintrc.json",
123- "workspace/.github/",
124- "workspace/.github/run-tests.yaml",
125- "workspace/.gitignore",
126- "workspace/.prettierrc.json",
127- "workspace/.vscode/",
128- "workspace/.vscode/settings.json",
129- "workspace/LICENSE",
130- "workspace/Makefile",
131- "workspace/README.md",
132- "workspace/bin/",
133- "workspace/bin/install.sh",
134- "workspace/docker-compose.yml",
135- "workspace/launchql.json",
136- "workspace/lerna.json",
137- "workspace/package.json",
138- "workspace/pnpm-workspace.yaml",
139- "workspace/tsconfig.json",
54+ "LICENSE",
55+ "README.md",
56+ "__tests__/",
57+ "__tests__/basic.test.ts",
58+ "jest.config.js",
59+ "package.json",
14060]
14161` ;
14262
14363exports [` cached template integration tests second clone from cache should snapshot package.json files from cached template 1` ] = `
14464{
145- " module/ package.json" : {
146- " author" : " ____fullName____ <____email____ >" ,
65+ " package.json" : {
66+ " author" : " Test User cached <[email protected] >" , 14767 " bugs" : {
148- " url" : " https://github.com/____username____/____repoName____ /issues" ,
68+ " url" : " https://github.com/Test User cached/Test User cached /issues" ,
14969 },
150- " description" : " ____moduleDesc____ " ,
70+ " description" : " Test Module cached " ,
15171 " devDependencies" : {
15272 " pgsql-test" : " ^2.13.2" ,
15373 },
154- " homepage" : " https://github.com/____username____/____repoName____ " ,
74+ " homepage" : " https://github.com/Test User cached/Test User cached " ,
15575 " keywords" : [],
156- " license" : " ____license____ " ,
157- " name" : " ____packageIdentifier____ " ,
76+ " license" : " MIT " ,
77+ " name" : " integration-cached " ,
15878 " pnpm" : {
15979 " overrides" : {
16080 " graphql" : " 14.7.0" ,
16181 },
16282 },
16383 " publishConfig" : {
164- " access" : " ____access____ " ,
84+ " access" : " public " ,
16585 " directory" : " dist" ,
16686 },
16787 " repository" : {
16888 " type" : " git" ,
169- " url" : " https://github.com/____username____/____repoName____ " ,
89+ " url" : " https://github.com/Test User cached/Test User cached " ,
17090 },
17191 " scripts" : {
17292 " lint" : " eslint . --fix" ,
@@ -175,47 +95,5 @@ exports[`cached template integration tests second clone from cache should snapsh
17595 },
17696 " version" : " 0.0.1" ,
17797 },
178- " workspace/package.json" : {
179- " author" : " ____fullName____ <____email____>" ,
180- " devDependencies" : {
181- " @types/jest" : " ^29.5.14" ,
182- " @types/node" : " ^22.10.2" ,
183- " @typescript-eslint/eslint-plugin" : " ^8.15.0" ,
184- " @typescript-eslint/parser" : " ^8.15.0" ,
185- " eslint" : " ^9.13.0" ,
186- " eslint-config-prettier" : " ^10.1.1" ,
187- " eslint-plugin-simple-import-sort" : " ^12.1.1" ,
188- " eslint-plugin-unused-imports" : " ^4.3.0" ,
189- " jest" : " ^29.7.0" ,
190- " lerna" : " ^8.2.4" ,
191- " pgsql-test" : " ^2.13.2" ,
192- " prettier" : " ^3.3.3" ,
193- " ts-jest" : " ^29.2.5" ,
194- " ts-node" : " ^10.9.2" ,
195- " typescript" : " ^5.6.3" ,
196- },
197- " license" : " SEE LICENSE IN LICENSE" ,
198- " name" : " ____moduleName____" ,
199- " pnpm" : {
200- " overrides" : {
201- " graphql" : " 14.7.0" ,
202- },
203- },
204- " private" : true ,
205- " publishConfig" : {
206- " access" : " restricted" ,
207- },
208- " repository" : {
209- " type" : " git" ,
210- " url" : " https://github.com/____username____/____moduleName____" ,
211- },
212- " scripts" : {
213- " lint" : " pnpm -r run lint" ,
214- },
215- " version" : " 0.0.1" ,
216- " workspaces" : [
217- " packages/*" ,
218- ],
219- },
22098}
22199` ;
0 commit comments