get rid of localhost in tests - not a qualified URL - we'll see
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 33m19s

This commit is contained in:
2026-01-05 20:02:37 -08:00
parent 696c547238
commit 2564df1c64
32 changed files with 73 additions and 71 deletions

View File

@@ -19,7 +19,7 @@ const mockBrands = [
brand_id: 2,
name: 'Compliments',
store_name: 'Sobeys',
logo_url: 'http://example.com/compliments.png',
logo_url: 'https://example.com/compliments.png',
}),
];
@@ -92,7 +92,7 @@ describe('AdminBrandManager', () => {
);
mockedApiClient.uploadBrandLogo.mockImplementation(
async () =>
new Response(JSON.stringify({ logoUrl: 'http://example.com/new-logo.png' }), {
new Response(JSON.stringify({ logoUrl: 'https://example.com/new-logo.png' }), {
status: 200,
}),
);
@@ -120,7 +120,7 @@ describe('AdminBrandManager', () => {
// Check if the UI updates with the new logo
expect(screen.getByAltText('No Frills logo')).toHaveAttribute(
'src',
'http://example.com/new-logo.png',
'https://example.com/new-logo.png',
);
console.log('TEST SUCCESS: All assertions for successful upload passed.');
});
@@ -350,7 +350,7 @@ describe('AdminBrandManager', () => {
// Brand 2 should still have original logo
expect(screen.getByAltText('Compliments logo')).toHaveAttribute(
'src',
'http://example.com/compliments.png',
'https://example.com/compliments.png',
);
});
});