mirror of
https://github.com/TECHNOFAB11/ergogen.git
synced 2025-12-12 08:00:06 +01:00
8 lines
No EOL
199 B
JavaScript
8 lines
No EOL
199 B
JavaScript
const Point = require('../src/point')
|
|
|
|
describe('Point', function() {
|
|
it('#constructor', function() {
|
|
const point = new Point(1, 2, 45)
|
|
point.p.should.deep.equal([1, 2])
|
|
})
|
|
}) |