docs
evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
Build a Karma plugin adapter for a hypothetical testing framework. Your plugin must register with Karma using the framework plugin pattern and automatically include the necessary framework files when initialized.
Your plugin needs to:
The plugin should add two files when initialized:
./vendor/simple-test.css./vendor/simple-test.js/**
* Main module export - registers the plugin with Karma
*/
module.exports = {
'framework:simple-test': Array
};Provides reference implementation patterns for creating Karma framework plugins, including plugin registration, factory pattern usage, and file injection mechanisms.