Show More
Commit Description:
change logger to be limited by file size
Commit Description:
change logger to be limited by file size
References:
File last commit:
Show/Diff file:
Action:
node_modules/ext/test/math/floor-10.js
| 13 lines
| 342 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
var assert = require("chai").assert | ||||
, floor10 = require("../../math/floor-10"); | ||||
describe("math/floor-10", function () { | ||||
it("Should floor", function () { | ||||
assert.equal(floor10(55.59, -1), 55.5); | ||||
assert.equal(floor10(59, 1), 50); | ||||
assert.equal(floor10(-55.51, -1), -55.6); | ||||
assert.equal(floor10(-51, 1), -60); | ||||
}); | ||||
}); | ||||