Skip to content

Commit

Permalink
chore(js): re-enable skipped test (#19427)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo authored Oct 3, 2023
1 parent 2d70eb0 commit a9230f2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 12 deletions.
8 changes: 6 additions & 2 deletions e2e/esbuild/src/esbuild.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,12 @@ describe('EsBuild Plugin', () => {
readFile(`dist/libs/${myPkg}/assets/a.md`).includes('initial a');
updateFile(`libs/${myPkg}/assets/a.md`, 'updated a');
await expect(
waitUntil(() =>
readFile(`dist/libs/${myPkg}/assets/a.md`).includes('updated a')
waitUntil(
() => readFile(`dist/libs/${myPkg}/assets/a.md`).includes('updated a'),
{
timeout: 20_000,
ms: 500,
}
)
).resolves.not.toThrow();
watchProcess.kill();
Expand Down
35 changes: 25 additions & 10 deletions e2e/js/src/js-executor-tsc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ describe('js:tsc executor', () => {
beforeAll(() => (scope = newProject()));
afterAll(() => cleanupProject());

// TODO: Re-enable this when it is passing again
xit('should create libs with js executors (--compiler=tsc)', async () => {
it('should create libs with js executors (--compiler=tsc)', async () => {
const lib = uniq('lib');
runCLI(`generate @nx/js:lib ${lib} --bundler=tsc --no-interactive`);
const libPackageJson = readJson(`libs/${lib}/package.json`);
Expand Down Expand Up @@ -71,20 +70,36 @@ describe('js:tsc executor', () => {
});
updateFile(`libs/${lib}/docs/a/b/nested.md`, 'Nested File');
await expect(
waitUntil(() =>
readFile(`dist/libs/${lib}/README.md`).includes(`Hello, World!`)
waitUntil(
() => readFile(`dist/libs/${lib}/README.md`).includes(`Hello, World!`),
{
timeout: 20_000,
ms: 500,
}
)
).resolves.not.toThrow();
await expect(
waitUntil(() =>
readFile(`dist/libs/${lib}/docs/a/b/nested.md`).includes(`Nested File`)
waitUntil(
() =>
readFile(`dist/libs/${lib}/docs/a/b/nested.md`).includes(
`Nested File`
),
{
timeout: 20_000,
ms: 500,
}
)
).resolves.not.toThrow();
await expect(
waitUntil(() =>
readFile(`dist/libs/${lib}/package.json`).includes(
`"version": "999.9.9"`
)
waitUntil(
() =>
readFile(`dist/libs/${lib}/package.json`).includes(
`"version": "999.9.9"`
),
{
timeout: 20_000,
ms: 500,
}
)
).resolves.not.toThrow();
libBuildProcess.kill();
Expand Down

0 comments on commit a9230f2

Please sign in to comment.