chore: 플랫폼 설정 및 테스트 업데이트

- Android 광고 권한 추가
- macOS 플러그인 등록
- 테스트 mock 업데이트
This commit is contained in:
JiWoong Sul
2026-01-16 20:11:00 +09:00
parent 748160d543
commit 9f077d74a1
5 changed files with 33 additions and 4 deletions

View File

@@ -80,7 +80,7 @@ void main() {
test('loadAndStart surfaces save load errors', () {
fakeAsync((async) {
final saveManager = FakeSaveManager()
..onLoad = (_) => (const SaveOutcome.failure('boom'), null, false);
..onLoad = (_) => (const SaveOutcome.failure('boom'), null, false, null);
final controller = buildController(async, saveManager);
controller.loadAndStart(fileName: 'bad.pqf');