Skip to content

Commit

Permalink
Build commit fbda62b
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Aug 19, 2024
1 parent 8bd89ae commit da61343
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator><link href="https://qunitjs.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://qunitjs.com/" rel="alternate" type="text/html" hreflang="en" /><updated>2024-08-19T13:56:54+00:00</updated><id>https://qunitjs.com/feed.xml</id><title type="html">QUnit</title><subtitle>The powerful, easy-to-use JavaScript testing framework.</subtitle></feed>
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator><link href="https://qunitjs.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://qunitjs.com/" rel="alternate" type="text/html" hreflang="en" /><updated>2024-08-19T17:56:17+00:00</updated><id>https://qunitjs.com/feed.xml</id><title type="html">QUnit</title><subtitle>The powerful, easy-to-use JavaScript testing framework.</subtitle></feed>
4 changes: 2 additions & 2 deletions resources/example-add.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html lang="en">
<meta charset="utf-8">
<title>QUnit</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.3.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.js"></script>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.3.js"></script>
<script>
function add (a, b) {
return a + b;
Expand Down
4 changes: 2 additions & 2 deletions resources/example-fail.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html lang="en">
<meta charset="utf-8">
<title>QUnit</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.3.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.js"></script>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.3.js"></script>
<script>
QUnit.test('apple', function (assert) {
assert.true(true, 'stem');
Expand Down
4 changes: 2 additions & 2 deletions resources/example-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html lang="en">
<meta charset="utf-8">
<title>QUnit</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.3.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>

<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.js"></script>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.3.js"></script>
<script type="module" src="calc.test.js"></script>
<script type="module" src="game.test.js"></script>
</body>
Expand Down

0 comments on commit da61343

Please sign in to comment.