UNPKG

@skhemata/skhemata-blog

Version:

Skhemata Blog Web Component. This web component provides several sub components in addition to main component, allowing featured blogs, blog listing and blog post display.

25 lines (22 loc) 730 B
/* eslint-disable import/no-extraneous-dependencies */ const { createDefaultConfig } = require('@open-wc/testing-karma'); const merge = require('deepmerge'); module.exports = config => { config.set( merge(createDefaultConfig(config), { files: [ // runs all files ending with .test in the test folder, // can be overwritten by passing a --grep flag. examples: // // npm run test -- --grep test/foo/bar.test.js // npm run test -- --grep test/bar/* { pattern: config.grep ? config.grep : 'test/**/*.test.js', type: 'module' }, ], esm: { nodeResolve: true, }, // you can overwrite/extend the config further }), ); return config; };