or run

npx @tessl/cli init
Log in

Version

Files

tile.json

task.mdevals/scenario-6/

QUnit Test Configuration Setup

Configure a Karma test runner to run QUnit tests with custom configuration options.

Capabilities

Test Configuration

  • A Karma configuration file passes a test timeout of 5000ms to the test environment @test
  • A Karma configuration file passes a showUI setting of true to the test environment @test
  • A Karma configuration file passes custom fixture HTML "<div>Test Fixture</div>" to the test environment @test

Implementation

@generates

API

module.exports = function(config) {
  config.set({
    frameworks: ['qunit'],
    files: ['test/**/*.test.js'],
    // Additional configuration as needed
  });
};

Dependencies { .dependencies }

karma-qunit { .dependency }

Provides QUnit test framework integration with Karma test runner.

@satisfied-by