Yuanclaw / archive /tests /test_syntax.R
huashu's picture
Export YuanSeq to Hugging Face without binary assets
7e6a9d1
Raw
History Blame Contribute Delete
230 Bytes
# 测试UI文件语法
tryCatch({
source("modules/ui_theme.R")
cat("✅ SUCCESS: ui_theme.R loaded successfully!\n")
}, error = function(e) {
cat("❌ ERROR:", e$message, "\n")
cat(" At line:", attr(e, "line"), "\n")
})