test: update error message to include recording-url attribute requirement

This commit is contained in:
juancarmore 2025-06-17 15:44:59 +02:00
parent fdc93e4f19
commit 8dddaf5c76

View File

@ -35,7 +35,7 @@ describe('Web Component Attributes', () => {
expect(iframe).toBeDefined();
expect(iframe?.src).toBeFalsy();
expect(consoleErrorSpy).toHaveBeenCalledWith('The "room-url" attribute is required.');
expect(consoleErrorSpy).toHaveBeenCalledWith('The "room-url" or "recording-url" attribute is required.');
consoleErrorSpy.mockRestore();
});