mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	test(server): ensure build artifacts exist
This commit is contained in:
		| @@ -348,6 +348,12 @@ | |||||||
|             } |             } | ||||||
|           ] |           ] | ||||||
|         } |         } | ||||||
|  |       }, | ||||||
|  |       "test-build": { | ||||||
|  |         "dependsOn": [ | ||||||
|  |           "build" | ||||||
|  |         ], | ||||||
|  |         "command": "vitest --config {projectRoot}/vitest.build.config.mts" | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|   }, |   }, | ||||||
|   | |||||||
							
								
								
									
										46
									
								
								apps/server/spec/build-checks/artifacts.spec.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								apps/server/spec/build-checks/artifacts.spec.ts
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,46 @@ | |||||||
|  | import { globSync } from "fs"; | ||||||
|  | import { join } from "path"; | ||||||
|  | import { it, describe, expect } from "vitest"; | ||||||
|  |  | ||||||
|  | describe("Check artifacts are present", () => { | ||||||
|  |     const distPath = join(__dirname, "../../dist"); | ||||||
|  |  | ||||||
|  |     it("has the necessary node modules", async () => { | ||||||
|  |         const paths = [ | ||||||
|  |             "node_modules/better-sqlite3", | ||||||
|  |             "node_modules/bindings", | ||||||
|  |             "node_modules/file-uri-to-path" | ||||||
|  |         ]; | ||||||
|  |  | ||||||
|  |         ensurePathsExist(paths); | ||||||
|  |     }); | ||||||
|  |  | ||||||
|  |     it("includes the client", async () => { | ||||||
|  |         const paths = [ | ||||||
|  |             "public/assets", | ||||||
|  |             "public/fonts", | ||||||
|  |             "public/node_modules", | ||||||
|  |             "public/src", | ||||||
|  |             "public/stylesheets", | ||||||
|  |             "public/translations" | ||||||
|  |         ]; | ||||||
|  |  | ||||||
|  |         ensurePathsExist(paths); | ||||||
|  |     }); | ||||||
|  |  | ||||||
|  |     it("includes necessary assets", async () => { | ||||||
|  |         const paths = [ | ||||||
|  |             "assets", | ||||||
|  |             "share-theme" | ||||||
|  |         ]; | ||||||
|  |  | ||||||
|  |         ensurePathsExist(paths); | ||||||
|  |     }); | ||||||
|  |  | ||||||
|  |     function ensurePathsExist(paths: string[]) { | ||||||
|  |         for (const path of paths) { | ||||||
|  |             const result = globSync(join(distPath, path, "**")); | ||||||
|  |             expect(result, path).not.toHaveLength(0); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | }); | ||||||
| @@ -11,6 +11,9 @@ export default defineConfig(() => ({ | |||||||
|     setupFiles: ["./spec/setup.ts"], |     setupFiles: ["./spec/setup.ts"], | ||||||
|     environment: "node", |     environment: "node", | ||||||
|     include: ['{src,spec}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], |     include: ['{src,spec}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], | ||||||
|  |     exclude: [ | ||||||
|  |       "spec/build-checks/**", | ||||||
|  |     ], | ||||||
|     reporters: [ |     reporters: [ | ||||||
|       "verbose" |       "verbose" | ||||||
|     ], |     ], | ||||||
|   | |||||||
							
								
								
									
										18
									
								
								apps/server/vitest.build.config.mts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								apps/server/vitest.build.config.mts
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | |||||||
|  | /// <reference types='vitest' /> | ||||||
|  | import { defineConfig } from 'vite'; | ||||||
|  |  | ||||||
|  | export default defineConfig(() => ({ | ||||||
|  |   root: __dirname, | ||||||
|  |   cacheDir: '../../node_modules/.vite/apps/server', | ||||||
|  |   plugins: [], | ||||||
|  |   test: { | ||||||
|  |     watch: false, | ||||||
|  |     globals: true, | ||||||
|  |     setupFiles: ["./spec/setup.ts"], | ||||||
|  |     environment: "node", | ||||||
|  |     include: ['spec/build-checks/**'], | ||||||
|  |     reporters: [ | ||||||
|  |       "verbose" | ||||||
|  |     ] | ||||||
|  |   }, | ||||||
|  | })); | ||||||
		Reference in New Issue
	
	Block a user