Skip to content

Commit 316cd18

Browse files
committed
docs(README.md): update readme
1 parent bce3791 commit 316cd18

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ These GitHub repositories provide supplementary resources for Rush Stack:
216216
| [/build-tests/package-extractor-test-02](./build-tests/package-extractor-test-02/) | This project is used by tests in the @rushstack/package-extractor package. |
217217
| [/build-tests/package-extractor-test-03](./build-tests/package-extractor-test-03/) | This project is used by tests in the @rushstack/package-extractor package. |
218218
| [/build-tests/package-extractor-test-04](./build-tests/package-extractor-test-04/) | This project is used by tests in the @rushstack/package-extractor package. |
219+
| [/build-tests/package-extractor-test-05](./build-tests/package-extractor-test-05/) | This project is used by tests in the @rushstack/package-extractor package. |
219220
| [/build-tests/run-scenarios-helpers](./build-tests/run-scenarios-helpers/) | Helpers for the *-scenarios test projects. |
220221
| [/build-tests/rush-amazon-s3-build-cache-plugin-integration-test](./build-tests/rush-amazon-s3-build-cache-plugin-integration-test/) | Tests connecting to an amazon S3 endpoint |
221222
| [/build-tests/rush-lib-declaration-paths-test](./build-tests/rush-lib-declaration-paths-test/) | This project ensures all of the paths in rush-lib/lib/... have imports that resolve correctly. If this project builds, all `lib/**/*.d.ts` files in the `@microsoft/rush-lib` package are valid. |

libraries/package-extractor/src/test/PackageExtractor.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,7 @@ describe(PackageExtractor.name, () => {
628628
ensureFolderExists: true
629629
});
630630
const result = await PackageExtractor.getPackageIncludedFilesAsync(project5Path);
631-
expect(result).toEqual(['dist/index.js', 'package.json']);
631+
// To make the test work on both Windows and *nix, need to normalize the paths to posix style
632+
expect(result.map(path.posix.normalize)).toEqual(['dist/index.js', 'package.json']);
632633
});
633634
});

0 commit comments

Comments
 (0)