aimpress-chatbot/node_modules/botframework-streaming/vendors/chai/web-test-runner.config.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

22 lines
507 B
TypeScript

import { fromRollup } from '@web/dev-server-rollup';
import rollupCommonjs from '@rollup/plugin-commonjs';
const commonjs = fromRollup(rollupCommonjs);
var webTestRunner_config = {
nodeResolve: true,
files: [
"test/*.js",
"!test/virtual-machines.js"
],
plugins: [
commonjs({
include: [
// the commonjs plugin is slow, list the required packages explicitly:
"**/node_modules/type-detect/**/*",
],
}),
],
};
export { webTestRunner_config as default };