You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> _[Unexpected File Modifications](#unexpected-file-modifications)_ covers that below.
210
-
211
-
You can run the end-to-end test for migrating locally on the command-line:
212
-
213
-
```shell
214
-
pnpm run test:migrate
215
-
```
216
-
217
-
That end-to-end test executes `script/migrate-test-e2e.ts`, which:
218
-
219
-
1. Runs the migration script using `--skip-github-api` and other skip flags, capturing code coverage
220
-
2. Checks that only a small list of allowed files were changed
221
-
3. Checks that the local repository's files were changed correctly (e.g. removed initialization-only files)
222
-
223
-
The `pnpm run test:migrate` script is run in CI to ensure that templating changes are in sync with the template's actual files.
224
-
See `.github/workflows/ci.yml`'s `test_migration_script` job.
225
-
226
-
> Tip: if the migration test is failing in CI and you don't see any errors, try [downloading the full logs](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/using-workflow-run-logs#downloading-logs).
227
-
228
-
##### Migration Snapshot Failures
229
-
230
-
The migration test uses the [Vitest file snapshot](https://vitest.dev/guide/snapshot#file-snapshots) in `script/__snapshots__/migrate-test-e2e.ts.snap` to store expected differences to this repository after running the migration script.
231
-
The end-to-end migration test will fail any changes that don't keep the same differences in that snapshot.
232
-
233
-
You can update the snapshot file by:
234
-
235
-
1. Committing any changes to your local repository
236
-
2. Running `pnpm i` and `pnpm build` if any updates have been made to the `package.json` or `src/` files, respectively
237
-
3. Running `pnpm run test:migrate -u` to update the snapshot
238
-
239
-
At this point there will be some files changed:
240
-
241
-
-`script/__snapshots__/migrate-test-e2e.ts.snap` will have updates if any files mismatched templates
242
-
- The actual updated files on disk will be there too
243
-
244
-
If the snapshot file changes are what you expected, then you can commit them.
245
-
The rest of the file changes can be reverted.
246
-
247
-
> [🚀 Feature: Add a way to apply known file changes after migration #1184](https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1184) tracks turning the test snapshot into a feature.
248
-
249
-
##### Unexpected File Modifications
250
-
251
-
The migration test also asserts that no files were unexpectedly changed.
252
-
If you see a failure like:
253
-
254
-
```plaintext
255
-
Oh no! Running the migrate script unexpectedly modified:
256
-
- ...
257
-
```
258
-
259
-
...then that means the file generated from templates differs from what's checked into the repository.
260
-
This is most often caused by changes to templates not being applied to checked-in files too.
261
-
262
-
Templates for files are generally stored in [`src/steps/writing/creation`] under a path roughly corresponding to the file they describe.
263
-
For example, the template for `tsup.config.ts` is stored in [`src/steps/writing/creation/createTsupConfig.ts`](../src/steps/writing/creation/createTsupConfig.ts).
264
-
If the `createTsupConfig` function were to be modified without an equivalent change to `tsup.config.ts` -or vice-versa- then the migration test would report:
265
-
266
-
```plaintext
267
-
Oh no! Running the migrate script unexpectedly modified:
0 commit comments