Skip to content

Commit

Permalink
Build commit 0e13d65
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Jul 21, 2024
1 parent bb3f879 commit 73927e6
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-07-21T01:03:28+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-07-21T18:08:30+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-2.21.1.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.21.1.js"></script>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.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-2.21.1.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.21.1.js"></script>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.js"></script>
<script>
QUnit.test('apple', function (assert) {
assert.equal('this is expected', 'this is expected', 'example');
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-2.21.1.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>

<script src="https://code.jquery.com/qunit/qunit-2.21.1.js"></script>
<script src="https://code.jquery.com/qunit/qunit-3.0.0-alpha.2.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 73927e6

Please sign in to comment.