mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-27 13:01:03 +00:00

* update web test-runner and remove temp summaryReporter workaournd * Update error reporting to show in context of the test file and as a summary at the bottom
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
import {
|
|
summaryReporter,
|
|
defaultReporter
|
|
} from '@web/test-runner'
|
|
|
|
const config = {
|
|
testRunnerHtml: (testFramework) => `
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>web-test-runner Tests</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0" />
|
|
<meta http-equiv="cache-control" content="max-age=0" />
|
|
<meta http-equiv="expires" content="0" />
|
|
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
<meta name="htmx-config" content='{"historyEnabled":false,"defaultSettleDelay":0,"inlineStyleNonce":"${Math.random() < 0.5 ? 'nonce' : ''}"}'>
|
|
</head>
|
|
<body style="padding:20px;font-family: sans-serif">
|
|
|
|
<h2>web-test-runner Test Suite</h2>
|
|
|
|
<script>${Math.random() < 0.9 ? 'window.onpopstate = function(event) {}' : ''}</script>
|
|
|
|
<script src="node_modules/chai/chai.js"></script>
|
|
<script src="node_modules/chai-dom/chai-dom.js"></script>
|
|
<script src="node_modules/sinon/pkg/sinon.js"></script>
|
|
<script src="node_modules/mock-socket/dist/mock-socket.js"></script>
|
|
<script src="src/htmx.js"></script>
|
|
<script>
|
|
// Add the version number to the top
|
|
document.getElementById('version-number').innerText += htmx.version
|
|
</script>
|
|
|
|
<script class="mocha-init">
|
|
window.should = window.chai.should()
|
|
</script>
|
|
|
|
<script src="test/util/util.js"></script>
|
|
|
|
<script type="module" src="${testFramework}"></script>
|
|
|
|
<!-- this hyperscript integration should be removed once its removed from the tests -->
|
|
<script src="test/lib/_hyperscript.js"></script>
|
|
|
|
<div hx-trigger="restored" hidden>just for htmx:restored event testing</div>
|
|
<em>Work Area</em>
|
|
<hr/>
|
|
<div id="work-area" hx-history-elt>
|
|
</div>
|
|
</body>
|
|
</html>`,
|
|
|
|
nodeResolve: true,
|
|
coverage: true,
|
|
coverageConfig: {
|
|
include: ['src/htmx.js']
|
|
},
|
|
files: [
|
|
'test/attributes/**/*.js',
|
|
'test/core/**/*.js'
|
|
],
|
|
reporters: [summaryReporter({ flatten: false, reportTestLogs: false, reportTestErrors: true }), defaultReporter({ reportTestProgress: true, reportTestResults: true })]
|
|
}
|
|
|
|
export default config
|