Skip to content

Commit

Permalink
fix: WebRTC videoValue missing
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Feb 10, 2025
1 parent 2d3bfa6 commit e4f41fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/markdown_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 4 additions & 0 deletions test/webrtc_stub.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit e4f41fd

Please sign in to comment.