We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3677b5 commit e3a595fCopy full SHA for e3a595f
examples/basic-vanilla-esm/index.e2e.js
@@ -15,7 +15,6 @@ test('Hello Electron', async () => {
15
});
16
17
const window = await electronApp.firstWindow();
18
- await window.waitForEvent('load');
19
expect(await window.title()).toBe('Hello from Electron renderer!');
20
21
const response = await window.textContent('[data-testid="greeting"]');
examples/basic-vanilla-esm/src/index.mjs
@@ -18,7 +18,7 @@ async function writeGreeting() {
}
async function listenForSubscription() {
- trpcReact.subscription.subscribe(undefined, {
+ trpc.subscription.subscribe(undefined, {
22
onData: (data) => {
23
console.log(data);
24
},
0 commit comments