zotero/test/content/runtests.html
Dan Stillman f81763b173 Remove Chai as Promised
A test using `assert.eventually` was failing after the Bluebird removal
but worked with just `await`, and since there hasn't really been much
point to Chai as Promised since the introduction of `async`/`await` ages
ago, just remove the library instead of figuring out why.
2025-07-30 22:31:08 -04:00

16 lines
493 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"></meta>
<title>Zotero Unit Tests</title>
</head>
<body>
<script src="resource://zotero-unit/chai.js"></script>
<script src="resource://zotero-unit/mocha.js"></script>
<script src="resource://zotero-unit/co-mocha.js"></script>
<script src="resource://zotero-unit/sinon.js"></script>
<script src="resource://zotero-unit/pako_inflate.js"></script>
<script src="support.js"></script>
<script src="runtests.js"></script>
</body>
</html>