chore(core): disable flaky e2e tests (#31200)

Disable flaky `e2e-release` tasks
This commit is contained in:
Isaac Mann 2025-05-14 09:58:39 -04:00 committed by GitHub
parent 552d6b1ea8
commit 514cdd890d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -45,7 +45,8 @@ expect.addSnapshotSerializer({
const originalVerboseLoggingValue = process.env.NX_VERBOSE_LOGGING; const originalVerboseLoggingValue = process.env.NX_VERBOSE_LOGGING;
describe('nx release circular dependencies', () => { // TODO: Flaky tests
xdescribe('nx release circular dependencies', () => {
let pkg1: string; let pkg1: string;
let pkg2: string; let pkg2: string;
let e2eRegistryUrl: string; let e2eRegistryUrl: string;

View File

@ -91,7 +91,8 @@ describe('nx release - private JS packages', () => {
}); });
afterAll(() => cleanupProject()); afterAll(() => cleanupProject());
it('should skip private packages and log a warning when private packages are explicitly configured', async () => { // TODO: Flaky test
xit('should skip private packages and log a warning when private packages are explicitly configured', async () => {
updateJson('nx.json', (json) => { updateJson('nx.json', (json) => {
json.release.projects = [publicPkg1, publicPkg2, privatePkg]; json.release.projects = [publicPkg1, publicPkg2, privatePkg];
return json; return json;