gui/ui/node_modules.bak/karma/requirejs.config.tpl.coffee
Snider fad16c8c76
Some checks failed
Security Scan / security (push) Failing after 34s
Test / test (push) Failing after 1m44s
chore: sync workspace dependencies
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-15 15:44:56 +00:00

22 lines
712 B
CoffeeScript

allTestFiles = []
TEST_REGEXP = /(spec|test)(\.coffee)?(\.js)?$/i
# Get a list of all the test files to include
Object.keys(window.__karma__.files).forEach (file) ->
if TEST_REGEXP.test(file)
# Normalize paths to RequireJS module names.
# If you require sub-dependencies of test files to be loaded as-is (requiring file extension)
# then do not normalize the paths
allTestFiles.push file.replace(/^\/base\/|\.js$/g, '')
return
require.config
# Karma serves files under /base, which is the basePath from your config file
baseUrl: "/base"
# dynamically load all test files
deps: allTestFiles
# we have to kickoff jasmine, as it is asynchronous
callback: window.__karma__.start