Fix the major update packages including Jest. (#414)

Signed-off-by: Tatsat Mishra <tamishra@microsoft.com>
This commit is contained in:
Tatsinnit
2025-06-19 05:12:52 +12:00
committed by GitHub
parent 1feba4ce5c
commit 6fd713ca6a
9 changed files with 3074 additions and 1622 deletions
@@ -63,7 +63,7 @@ describe('promote tests', () => {
await expect(
promoteBlueGreenIngress(kubectl, testObjects)
).rejects.toThrowError()
).rejects.toThrow()
})
test('promote blue/green service', async () => {
@@ -102,7 +102,7 @@ describe('promote tests', () => {
await expect(
promoteBlueGreenService(kubectl, testObjects)
).rejects.toThrowError()
).rejects.toThrow()
})
test('promote blue/green SMI', async () => {
@@ -153,6 +153,6 @@ describe('promote tests', () => {
.spyOn(smiTester, 'validateTrafficSplitsState')
.mockImplementation(() => Promise.resolve(false))
expect(promoteBlueGreenSMI(kubectl, testObjects)).rejects.toThrowError()
expect(promoteBlueGreenSMI(kubectl, testObjects)).rejects.toThrow()
})
})