From 4a9bc93d158f73eb58483c2d5b8899e0bebe1a52 Mon Sep 17 00:00:00 2001 From: flemming-it Date: Tue, 26 May 2026 01:00:36 +0200 Subject: [PATCH] chore(studio): point plugin test at fai_plugins/ instead of fai_modules/ Studio plugins moved to a dedicated fai_plugins/ workspace directory; integration test path updated to match. Signed-off-by: flemming-it --- test/integration/plugin_theme_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/plugin_theme_test.dart b/test/integration/plugin_theme_test.dart index 3ec9c92..1457bf3 100644 --- a/test/integration/plugin_theme_test.dart +++ b/test/integration/plugin_theme_test.dart @@ -12,7 +12,7 @@ // Pre-reqs (handled by HubFixture's skip-when-missing path): // - fai binary on PATH or at ../fai_platform/target/release/fai // - studio-theme-solarized plugin built to module.wasm in its -// fai_modules dir. +// fai_plugins dir. import 'dart:io'; @@ -33,7 +33,7 @@ void main() { // add network + bundle-fetch latency that doesn't // belong in an in-process round-trip test. final pluginSrc = Directory( - '../fai_modules/studio-theme-solarized', + '../fai_plugins/studio-theme-solarized', ); if (!await pluginSrc.exists()) { markTestSkipped('studio-theme-solarized source not available');