You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/stats/samples/template-references/_config.js

9 lines
247 B

export default {
test(assert, stats) {
assert.equal(stats.templateReferences.size, 3);
assert.ok(stats.templateReferences.has('foo'));
assert.ok(stats.templateReferences.has('Bar'));
assert.ok(stats.templateReferences.has('baz'));
},
};