Skip to content

Commit

Permalink
chore: cleanup test logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Sep 15, 2020
1 parent f769030 commit 81c1485
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/suites/symbol.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ export default function (klona) {
Symbols('object :: enumerable key', () => {
const key = Symbol('key');
const input = { foo: 123, [key]: 456 };
console.log('START');
const output = klona(input);
console.log('~> output', output);

assert.equal(output[key], 456);
assert.deepStrictEqual(input, output);
Expand Down

0 comments on commit 81c1485

Please sign in to comment.