Files
handlebars.js/spec/karma-includes/require-config.js
T
Nils Knappmeier 55f65eaa2e backup
2020-05-31 23:38:23 +02:00

22 lines
388 B
JavaScript

/* global requirejs */
var tests = [];
requirejs.config({
// Karma serves files from '/base'
baseUrl: '/base/src',
paths: {
handlebars: '/dist/handlebars.amd',
tests: '/tmp/tests'
},
shim: {},
// ask Require.js to load these files (all our tests)
deps: ['handlebars', tests],
// start test run, once Require.js is done
callback: window.__karma__.start
});