214fcfc46d
* test: re-enable some skipped tests * test: enable more tests
7 lines
180 B
HTML
7 lines
180 B
HTML
<script>
|
|
const { ipcRenderer } = require('electron');
|
|
caches.open('foo').then(
|
|
() => ipcRenderer.send('success'),
|
|
err => ipcRenderer.send('failure', err)
|
|
)
|
|
</script>
|