Skip to content

Commit

Permalink
build: work in progress [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilou88 committed May 29, 2023
1 parent 9c9745b commit 2139dd8
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ describe('nx-micronaut-gradle e2e', () => {
).not.toThrow();
}, 120000);

it('should migrate', async () => {
xit('should migrate', async () => {
await runNxCommandAsync(`generate @jnxplus/nx-micronaut-gradle:migrate`);
}, 120000);

Expand Down Expand Up @@ -242,7 +242,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should build-image a java application', async () => {
xit('should build-image a java application', async () => {
if (!isWin && !isMacOs && isCI) {
const appName = uniq('micronaut-gradle-app-');
await runNxCommandAsync(
Expand All @@ -255,7 +255,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should use specified options to create an application', async () => {
xit('should use specified options to create an application', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appDir = 'deep/subdir';
const appName = `${normalizeName(appDir)}-${randomName}`;
Expand Down Expand Up @@ -348,7 +348,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should generate an app with a simple package name', async () => {
xit('should generate an app with a simple package name', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appDir = 'deep/subdir';
const appName = `${normalizeName(appDir)}-${randomName}`;
Expand Down Expand Up @@ -441,7 +441,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should create a kotlin application', async () => {
xit('should create a kotlin application', async () => {
const appName = uniq('micronaut-gradle-app-');
const port = 8383;

Expand Down Expand Up @@ -529,7 +529,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 240000);

it('should build-image a kotlin application', async () => {
xit('should build-image a kotlin application', async () => {
if (!isWin && !isMacOs && isCI) {
const appName = uniq('micronaut-gradle-app-');
await runNxCommandAsync(
Expand All @@ -542,7 +542,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('--an app with aliases', async () => {
xit('--an app with aliases', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appDir = 'subdir';
const appName = `${appDir}-${randomName}`;
Expand Down Expand Up @@ -635,7 +635,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('directory with dash', async () => {
xit('directory with dash', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appName = `deep-sub-dir-${randomName}`;
const port = 8585;
Expand Down Expand Up @@ -675,7 +675,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should create a library', async () => {
xit('should create a library', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand Down Expand Up @@ -739,7 +739,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should create a kotlin library', async () => {
xit('should create a kotlin library', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand Down Expand Up @@ -801,7 +801,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should create a library with the specified properties', async () => {
xit('should create a library with the specified properties', async () => {
const randomName = uniq('micronaut-gradle-lib-');
const libDir = 'deep/subdir';
const libName = `${normalizeName(libDir)}-${randomName}`;
Expand Down Expand Up @@ -863,7 +863,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should generare a lib with a simple package name', async () => {
xit('should generare a lib with a simple package name', async () => {
const randomName = uniq('micronaut-gradle-lib-');
const libDir = 'deep/subdir';
const libName = `${normalizeName(libDir)}-${randomName}`;
Expand Down Expand Up @@ -925,7 +925,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('--a lib with aliases', async () => {
xit('--a lib with aliases', async () => {
const randomName = uniq('micronaut-gradle-lib-');
const libDir = 'subdir';
const libName = `${libDir}-${randomName}`;
Expand Down Expand Up @@ -987,7 +987,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should add a lib to an app dependencies', async () => {
xit('should add a lib to an app dependencies', async () => {
const appName = uniq('micronaut-gradle-app-');
const libName = uniq('micronaut-gradle-lib-');

Expand Down Expand Up @@ -1065,7 +1065,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should add a kotlin lib to a kotlin app dependencies', async () => {
xit('should add a kotlin lib to a kotlin app dependencies', async () => {
const appName = uniq('micronaut-gradle-app-');
const libName = uniq('micronaut-gradle-lib-');

Expand Down Expand Up @@ -1149,7 +1149,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should create an application with a simple name', async () => {
xit('should create an application with a simple name', async () => {
const appName = uniq('micronaut-gradle-app-');
const appDir = 'deep/subdir';
const port = 8686;
Expand Down Expand Up @@ -1239,7 +1239,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should create a library with a simple name', async () => {
xit('should create a library with a simple name', async () => {
const libName = uniq('micronaut-gradle-lib-');
const libDir = 'deep/subdir';

Expand Down Expand Up @@ -1300,7 +1300,7 @@ describe('nx-micronaut-gradle e2e', () => {
});
}, 120000);

it('should create a minimal java application', async () => {
xit('should create a minimal java application', async () => {
const appName = uniq('micronaut-gradle-app-');
const port = 8787;

Expand Down Expand Up @@ -1353,7 +1353,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should create a minimal kotlin application', async () => {
xit('should create a minimal kotlin application', async () => {
const appName = uniq('micronaut-gradle-app-');
const port = 8888;

Expand Down Expand Up @@ -1407,7 +1407,7 @@ describe('nx-micronaut-gradle e2e', () => {
}
}, 120000);

it('should skip starter code when generating a java library with skipStarterCode option', async () => {
xit('should skip starter code when generating a java library with skipStarterCode option', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand All @@ -1431,7 +1431,7 @@ describe('nx-micronaut-gradle e2e', () => {
).toThrow();
}, 120000);

it('should skip starter code when generating a kotlin library with skipStarterCode option', async () => {
xit('should skip starter code when generating a kotlin library with skipStarterCode option', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
).not.toThrow();
}, 120000);

it('should migrate', async () => {
xit('should migrate', async () => {
await runNxCommandAsync(`generate @jnxplus/nx-micronaut-gradle:migrate`);
}, 120000);

Expand Down Expand Up @@ -243,7 +243,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should build-image a java application', async () => {
xit('should build-image a java application', async () => {
if (!isWin && !isMacOs && isCI) {
const appName = uniq('micronaut-gradle-app-');
await runNxCommandAsync(
Expand All @@ -256,7 +256,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should use specified options to create an application', async () => {
xit('should use specified options to create an application', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appDir = 'deep/subdir';
const appName = `${normalizeName(appDir)}-${randomName}`;
Expand Down Expand Up @@ -351,7 +351,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should generate an app with a simple package name', async () => {
xit('should generate an app with a simple package name', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appDir = 'deep/subdir';
const appName = `${normalizeName(appDir)}-${randomName}`;
Expand Down Expand Up @@ -446,7 +446,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should create a kotlin application', async () => {
xit('should create a kotlin application', async () => {
const appName = uniq('micronaut-gradle-app-');
const port = 8383;

Expand Down Expand Up @@ -534,7 +534,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should build-image a kotlin application', async () => {
xit('should build-image a kotlin application', async () => {
if (!isWin && !isMacOs && isCI) {
const appName = uniq('micronaut-gradle-app-');
await runNxCommandAsync(
Expand All @@ -547,7 +547,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('--an app with aliases', async () => {
xit('--an app with aliases', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appDir = 'subdir';
const appName = `${appDir}-${randomName}`;
Expand Down Expand Up @@ -642,7 +642,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('directory with dash', async () => {
xit('directory with dash', async () => {
const randomName = uniq('micronaut-gradle-app-');
const appName = `deep-sub-dir-${randomName}`;
const port = 8585;
Expand Down Expand Up @@ -682,7 +682,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should create a library', async () => {
xit('should create a library', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand Down Expand Up @@ -746,7 +746,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should create a kotlin library', async () => {
xit('should create a kotlin library', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand Down Expand Up @@ -808,7 +808,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should create a library with the specified properties', async () => {
xit('should create a library with the specified properties', async () => {
const randomName = uniq('micronaut-gradle-lib-');
const libDir = 'deep/subdir';
const libName = `${normalizeName(libDir)}-${randomName}`;
Expand Down Expand Up @@ -872,7 +872,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should generare a lib with a simple package name', async () => {
xit('should generare a lib with a simple package name', async () => {
const randomName = uniq('micronaut-gradle-lib-');
const libDir = 'deep/subdir';
const libName = `${normalizeName(libDir)}-${randomName}`;
Expand Down Expand Up @@ -936,7 +936,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('--a lib with aliases', async () => {
xit('--a lib with aliases', async () => {
const randomName = uniq('micronaut-gradle-lib-');
const libDir = 'subdir';
const libName = `${libDir}-${randomName}`;
Expand Down Expand Up @@ -1000,7 +1000,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should add a lib to an app dependencies', async () => {
xit('should add a lib to an app dependencies', async () => {
const appName = uniq('micronaut-gradle-app-');
const libName = uniq('micronaut-gradle-lib-');

Expand Down Expand Up @@ -1078,7 +1078,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should add a kotlin lib to a kotlin app dependencies', async () => {
xit('should add a kotlin lib to a kotlin app dependencies', async () => {
const appName = uniq('micronaut-gradle-app-');
const libName = uniq('micronaut-gradle-lib-');

Expand Down Expand Up @@ -1162,7 +1162,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should create an application with a simple name', async () => {
xit('should create an application with a simple name', async () => {
const appName = uniq('micronaut-gradle-app-');
const appDir = 'deep/subdir';
const port = 8686;
Expand Down Expand Up @@ -1252,7 +1252,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should create a library with a simple name', async () => {
xit('should create a library with a simple name', async () => {
const libName = uniq('micronaut-gradle-lib-');
const libDir = 'deep/subdir';

Expand Down Expand Up @@ -1313,7 +1313,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
});
}, 120000);

it('should create a minimal java application', async () => {
xit('should create a minimal java application', async () => {
const appName = uniq('micronaut-gradle-app-');
const port = 8787;

Expand Down Expand Up @@ -1366,7 +1366,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should create a minimal kotlin application', async () => {
xit('should create a minimal kotlin application', async () => {
const appName = uniq('micronaut-gradle-app-');
const port = 8888;

Expand Down Expand Up @@ -1420,7 +1420,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
}
}, 120000);

it('should skip starter code when generating a java library with skipStarterCode option', async () => {
xit('should skip starter code when generating a java library with skipStarterCode option', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand All @@ -1446,7 +1446,7 @@ describe('nx-micronaut-gradle kt e2e', () => {
).toThrow();
}, 120000);

it('should skip starter code when generating a kotlin library with skipStarterCode option', async () => {
xit('should skip starter code when generating a kotlin library with skipStarterCode option', async () => {
const libName = uniq('micronaut-gradle-lib-');

await runNxCommandAsync(
Expand Down

0 comments on commit 2139dd8

Please sign in to comment.