Skip to content

Commit 4449d63

Browse files
author
Lauren McCarthy
committed
0.5.13
1 parent 4dccacb commit 4449d63

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"docs": "grunt yui",
1111
"test": "grunt"
1212
},
13-
"version": "0.5.12",
13+
"version": "0.5.13",
1414
"devDependencies": {
1515
"amdclean": "~0.3.3",
1616
"browserify": "^11.0.1",

test/unit/core/structure.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ suite('Structure', function() {
1414
//myp5.noLoop();
1515
var c0 = myp5.frameCount;
1616
myp5.noLoop();
17+
myp5.ellipse(0, 0, 10, 10);
1718
var c1 = myp5.frameCount;
1819
assert.equal(c0, c1);
1920
});
@@ -22,6 +23,7 @@ suite('Structure', function() {
2223
myp5.noLoop();
2324
var c0 = myp5.frameCount;
2425
myp5.loop();
26+
myp5.ellipse(0, 0, 10, 10);
2527
var c1 = myp5.frameCount;
2628
assert.notEqual(c0, c1);
2729
});

0 commit comments

Comments
 (0)