* Make sure we always reset the code on important steps no matter what the user did to it * Convert comments in codeManager to JSDoc comments so they appear in diagnostics * Was using the wrong codeManager callback * Make sure editorView is available before resetting code * Add Playwright test that shows the code being reset * Fix up text that looks like linksÏ * fmt * Skip test on MacOS, make test more reliable on Chrome * Update cargo-clippy to run based on paths on PRs as well * playw fix * try keep reports * add fix me * try one last thing * fmt --------- Co-authored-by: Kurt Hutten <k.hutten@protonmail.ch>
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { SaveSettingsPayload } from 'lib/settings/settingsTypes'
 | 
						|
import { Themes } from 'lib/theme'
 | 
						|
import { onboardingPaths } from 'routes/Onboarding/paths'
 | 
						|
 | 
						|
export const TEST_SETTINGS_KEY = '/settings.toml'
 | 
						|
export const TEST_SETTINGS = {
 | 
						|
  app: {
 | 
						|
    theme: Themes.Dark,
 | 
						|
    onboardingStatus: 'dismissed',
 | 
						|
    projectDirectory: '',
 | 
						|
    enableSSAO: false,
 | 
						|
  },
 | 
						|
  modeling: {
 | 
						|
    defaultUnit: 'in',
 | 
						|
    mouseControls: 'KittyCAD',
 | 
						|
    showDebugPanel: true,
 | 
						|
  },
 | 
						|
  projects: {
 | 
						|
    defaultProjectName: 'project-$nnn',
 | 
						|
  },
 | 
						|
  textEditor: {
 | 
						|
    textWrapping: true,
 | 
						|
  },
 | 
						|
} satisfies Partial<SaveSettingsPayload>
 | 
						|
 | 
						|
export const TEST_SETTINGS_ONBOARDING_USER_MENU = {
 | 
						|
  ...TEST_SETTINGS,
 | 
						|
  app: { ...TEST_SETTINGS.app, onboardingStatus: onboardingPaths.USER_MENU },
 | 
						|
} satisfies Partial<SaveSettingsPayload>
 | 
						|
 | 
						|
export const TEST_SETTINGS_ONBOARDING_EXPORT = {
 | 
						|
  ...TEST_SETTINGS,
 | 
						|
  app: { ...TEST_SETTINGS.app, onboardingStatus: onboardingPaths.EXPORT },
 | 
						|
} satisfies Partial<SaveSettingsPayload>
 | 
						|
 | 
						|
export const TEST_SETTINGS_ONBOARDING_PARAMETRIC_MODELING = {
 | 
						|
  ...TEST_SETTINGS,
 | 
						|
  app: {
 | 
						|
    ...TEST_SETTINGS.app,
 | 
						|
    onboardingStatus: onboardingPaths.PARAMETRIC_MODELING,
 | 
						|
  },
 | 
						|
} satisfies Partial<SaveSettingsPayload>
 | 
						|
 | 
						|
export const TEST_SETTINGS_ONBOARDING_START = {
 | 
						|
  ...TEST_SETTINGS,
 | 
						|
  app: { ...TEST_SETTINGS.app, onboardingStatus: '' },
 | 
						|
} satisfies Partial<SaveSettingsPayload>
 | 
						|
 | 
						|
export const TEST_SETTINGS_CORRUPTED = {
 | 
						|
  app: {
 | 
						|
    theme: Themes.Dark,
 | 
						|
    onboardingStatus: 'dismissed',
 | 
						|
    projectDirectory: 123 as any,
 | 
						|
  },
 | 
						|
  modeling: {
 | 
						|
    defaultUnit: 'invalid' as any,
 | 
						|
    mouseControls: `() => alert('hack the planet')` as any,
 | 
						|
    showDebugPanel: true,
 | 
						|
  },
 | 
						|
  projects: {
 | 
						|
    defaultProjectName: false as any,
 | 
						|
  },
 | 
						|
  textEditor: {
 | 
						|
    textWrapping: true,
 | 
						|
  },
 | 
						|
} satisfies Partial<SaveSettingsPayload>
 | 
						|
 | 
						|
export const TEST_CODE_GIZMO = `const part001 = startSketchOn('XZ')
 | 
						|
|> startProfileAt([20, 0], %)
 | 
						|
|> line([7.13, 4 + 0], %)
 | 
						|
|> angledLine({ angle: 3 + 0, length: 3.14 + 0 }, %)
 | 
						|
|> lineTo([20.14 + 0, -0.14 + 0], %)
 | 
						|
|> xLineTo(29 + 0, %)
 | 
						|
|> yLine(-3.14 + 0, %, 'a')
 | 
						|
|> xLine(1.63, %)
 | 
						|
|> angledLineOfXLength({ angle: 3 + 0, length: 3.14 }, %)
 | 
						|
|> angledLineOfYLength({ angle: 30, length: 3 + 0 }, %)
 | 
						|
|> angledLineToX({ angle: 22.14 + 0, to: 12 }, %)
 | 
						|
|> angledLineToY({ angle: 30, to: 11.14 }, %)
 | 
						|
|> angledLineThatIntersects({
 | 
						|
  angle: 3.14,
 | 
						|
  intersectTag: 'a',
 | 
						|
  offset: 0
 | 
						|
}, %)
 | 
						|
|> tangentialArcTo([13.14 + 0, 13.14], %)
 | 
						|
|> close(%)
 | 
						|
|> extrude(5 + 7, %)
 | 
						|
`
 |