Skip to content

Commit

Permalink
Cleanup efficiency test description
Browse files Browse the repository at this point in the history
  • Loading branch information
soimy committed May 13, 2019
1 parent 9c8de3b commit cdd8140
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/efficiency.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ describe("Efficiency", () => {
const CANDIDATES = [
{name: "1024x2048:0", factory: () => new MaxRectsPacker(1024, 2048, 0)},
{name: "1024x2048:1", factory: () => new MaxRectsPacker(1024, 2048, 1)},
{name: "1024x2048:1:allowRotation", factory: () => new MaxRectsPacker(1024, 2048, 1, { smart: true, pot: true, square: true, allowRotation: true})},
{name: "1024x2048:1:Rot", factory: () => new MaxRectsPacker(1024, 2048, 1, { smart: true, pot: true, square: true, allowRotation: true})},
{name: "1024x1024:0", factory: () => new MaxRectsPacker(1024, 1024, 0)},
{name: "1024x1024:1", factory: () => new MaxRectsPacker(1024, 1024, 1)},
{name: "1024x1024:1:allowRotation", factory: () => new MaxRectsPacker(1024, 1024, 1, { smart: true, pot: true, square: true, allowRotation: true})},
{name: "1024x1024:1:Rot", factory: () => new MaxRectsPacker(1024, 1024, 1, { smart: true, pot: true, square: true, allowRotation: true})},
{name: "2048:2048:1", factory: () => new MaxRectsPacker(2048, 2048, 1)},
{name: "2048:2048:1:allowRotation", factory: () => new MaxRectsPacker(2048, 2048, 1, { smart: true, pot: true, square: true, allowRotation: true})}
{name: "2048:2048:1:Rot", factory: () => new MaxRectsPacker(2048, 2048, 1, { smart: true, pot: true, square: true, allowRotation: true})}
];


Expand Down

0 comments on commit cdd8140

Please sign in to comment.