mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			451 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			451 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | import { test, expect, Page } from "@playwright/test"; | ||
|  | import App from "./support/app"; | ||
|  | 
 | ||
|  | test("Displays translations in Settings", async ({ page }) => { | ||
|  |     const app = new App(page); | ||
|  |     await app.goto(); | ||
|  |     await app.closeAllTabs(); | ||
|  |     await app.goToSettings(); | ||
|  |     await app.noteTree.getByText("Appearance").click(); | ||
|  | 
 | ||
|  |     expect(app.currentNoteSplit).toContainText("Localization"); | ||
|  |     expect(app.currentNoteSplit).toContainText("Language"); | ||
|  | }); |