We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f41f3 commit 72daa27Copy full SHA for 72daa27
test/specs/functions.spec.js
@@ -286,13 +286,10 @@ describe("Main", function() {
286
describe("#createCircle", function() {
287
var radius, circle;
288
289
- it("should be a function", function(done) {
290
- setTimeout(function() {
291
- (typeof createCircle).should.equal("function");
292
- radius = 4;
293
- circle = createCircle(radius);
294
- done();
295
- }, 1000);
+ it("should be a function", function() {
+ (typeof createCircle).should.equal("function");
+ radius = 4;
+ circle = createCircle(radius);
296
});
297
298
it("should return a circle object with the properties circumference and area", function() {
0 commit comments