Skip to content

Commit

Permalink
fix(tests): remove more jsdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTelanie committed Aug 26, 2020
1 parent a5430ba commit 83a224d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions test/color.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { assert } from 'chai';
import { calc, icolor, IColor, Color, color } from '../src/color';

/**
* @param {(typeof icolor) | (typeof color)} color
* @param {(typeof Color) | (typeof IColor)} Color
*/
const colorTest = (color, Color) => {
it('should create empty color', () => {
const pos = color();
Expand Down
4 changes: 0 additions & 4 deletions test/point.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { assert } from 'chai';
import { calc, ipoint, IPoint, Point, point } from '../src/point';

/**
* @param {(typeof ipoint) | (typeof point)} vec2
* @param {(typeof Point) | (typeof IPoint)} Vec2
*/
const pointTest = (vec2, Vec2) => {
it('should create empty vector', () => {
const pos = vec2();
Expand Down
4 changes: 0 additions & 4 deletions test/vector.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ import { assert } from "chai";
import { Vector, Victor, vector, victor, calc } from "../src/vector";
import "../examples";

/**
* @param {(typeof vector) | (typeof victor)} vec3
* @param {(typeof Vector) | (typeof Victor)} Vec3
*/
const vectorTest = (vec3, Vec3) => {
it("should create empty vector", () => {
const pos = vec3();
Expand Down

0 comments on commit 83a224d

Please sign in to comment.