fix: WebRTC videoValue missing

This commit is contained in:
Krille 2025-02-10 10:00:04 +01:00
parent 2d3bfa64a7
commit e4f41fddeb
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652
2 changed files with 5 additions and 1 deletions

View File

@ -92,7 +92,7 @@ void main() {
);
});
test('Other block elements', () {
expect(markdown('# blah\n\nblubb'), '<h1>blah</h1><p><br/>blubb</p>');
expect(markdown('# blah\n\nblubb'), '<h1>blah</h1><p>blubb</p>');
});
test('lists', () {
expect(

View File

@ -844,4 +844,8 @@ class MockVideoRenderer implements VideoRenderer {
// Mock implementation for disposing VideoRenderer
Logs().i('Mock: Disposing VideoRenderer');
}
@override
// TODO: implement videoValue
RTCVideoValue get videoValue => RTCVideoValue.empty;
}