test: fix nativeTheme test when system in dark mode (#36943)

This commit is contained in:
David Sanders 2023-01-19 18:59:20 -08:00 коммит произвёл GitHub
Родитель 5ce8dfdcb5
Коммит 885c1878d4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,7 @@ describe('nativeTheme module', () => {
});
it('should emit the "updated" event when it is set and the resulting "shouldUseDarkColors" value changes', async () => {
nativeTheme.themeSource = 'light';
let updatedEmitted = emittedOnce(nativeTheme, 'updated');
nativeTheme.themeSource = 'dark';
await updatedEmitted;