-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Eventually, we may replace QUnit with something like Playwright, but for now, we still use it as the testing infrastructure.
- Loading branch information
Showing
4 changed files
with
996 additions
and
732 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link href="../node_modules/qunit/qunit/qunit.css" rel="stylesheet" /> | ||
<link href="/jcanvas/resources/images/favicon.ico" rel="shortcut icon" /> | ||
<title>jCanvas Unit Tests</title> | ||
</head> | ||
<body> | ||
<h1>jCanvas Unit Tests</h1> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link | ||
href="https://cdnjs.cloudflare.com/ajax/libs/qunit/2.21.0/qunit.css" | ||
rel="stylesheet" | ||
/> | ||
<link href="/jcanvas/resources/images/favicon.ico" rel="shortcut icon" /> | ||
<title>jCanvas Unit Tests</title> | ||
</head> | ||
<body> | ||
<h1>jCanvas Unit Tests</h1> | ||
|
||
<p>This is a collection of jCanvas unit tests written by <a href="https://calebevans.me/" target="_blank">Caleb Evans</a> using the <a href="https://qunitjs.com/" target="_blank">QUnit</a> testing framework.</p> | ||
<p> | ||
This is a collection of jCanvas unit tests written by | ||
<a href="https://calebevans.me/" target="_blank">Caleb Evans</a> using the | ||
<a href="https://qunitjs.com/" target="_blank">QUnit</a> testing | ||
framework. | ||
</p> | ||
|
||
<div id="qunit"></div> | ||
<div id="qunit-fixture"></div> | ||
<div id="qunit"></div> | ||
<div id="qunit-fixture"></div> | ||
|
||
<script src="../node_modules/jquery/dist/jquery.js"></script> | ||
<script src="../node_modules/qunit/qunit/qunit.js"></script> | ||
<script src="../dist/umd/jcanvas.min.js"></script> | ||
<script src="tests/jcanvas-tests.js"></script> | ||
</body> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/qunit/2.21.0/qunit.min.js"></script> | ||
<script src="../dist/umd/jcanvas.min.js"></script> | ||
<script src="tests/jcanvas-tests.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.