tsc lint
This commit is contained in:
		@ -236,7 +236,7 @@ test.describe('Native file menu', { tag: ['@electron'] }, () => {
 | 
			
		||||
                }
 | 
			
		||||
                // FIXME: Add back when you can actually sign out
 | 
			
		||||
                // menu.click()
 | 
			
		||||
                // return true
 | 
			
		||||
                return true
 | 
			
		||||
              })
 | 
			
		||||
          )
 | 
			
		||||
          .toBe(true)
 | 
			
		||||
@ -868,17 +868,24 @@ test.describe('Native file menu', { tag: ['@electron'] }, () => {
 | 
			
		||||
 | 
			
		||||
        // Run electron snippet to find the Menu!
 | 
			
		||||
        await page.waitForTimeout(100) // wait for createModelingPageMenu() to run
 | 
			
		||||
        await expect
 | 
			
		||||
          .poll(
 | 
			
		||||
            async () =>
 | 
			
		||||
              await tronApp.electron.evaluate(async ({ app }) => {
 | 
			
		||||
                if (!app || !app.applicationMenu) {
 | 
			
		||||
                  throw new Error('app or app.applicationMenu is missing')
 | 
			
		||||
                }
 | 
			
		||||
          const menu = app.applicationMenu.getMenuItemById('File.Sign out')
 | 
			
		||||
                const menu =
 | 
			
		||||
                  app.applicationMenu.getMenuItemById('File.Sign out')
 | 
			
		||||
                if (!menu) {
 | 
			
		||||
                  throw new Error('File.Sign out')
 | 
			
		||||
                }
 | 
			
		||||
                // FIXME: Add back when you can actually sign out
 | 
			
		||||
                // menu.click()
 | 
			
		||||
                return true
 | 
			
		||||
              })
 | 
			
		||||
          )
 | 
			
		||||
          .toBe(true)
 | 
			
		||||
        // FIXME: When signing out during E2E the page is not bound correctly.
 | 
			
		||||
        // It cannot find the button
 | 
			
		||||
        // const signIn = page.getByTestId('sign-in-button')
 | 
			
		||||
 | 
			
		||||
@ -3,6 +3,7 @@ import { createActor, setup, spawnChild } from 'xstate'
 | 
			
		||||
 | 
			
		||||
import { createSettings } from '@src/lib/settings/initialSettings'
 | 
			
		||||
import { authMachine } from '@src/machines/authMachine'
 | 
			
		||||
import type { EngineStreamActor } from '@src/machines/engineStreamMachine'
 | 
			
		||||
import {
 | 
			
		||||
  engineStreamContextCreate,
 | 
			
		||||
  engineStreamMachine,
 | 
			
		||||
@ -74,4 +75,4 @@ export const useSettings = () =>
 | 
			
		||||
 | 
			
		||||
export const engineStreamActor = appActor.system.get(
 | 
			
		||||
  ENGINE_STREAM
 | 
			
		||||
) as ActorRefFrom<typeof engineStreamMachine>
 | 
			
		||||
) as EngineStreamActor
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user