Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed Feb 29, 2024
1 parent 328f84c commit 9ac8713
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/dict.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { benchmark } from './benchmark';
import { IxMap } from '../src/ixmap';
import { MultiMap } from '../src/multimap';

describe('Benchmark:', function () {
describe.only('Benchmark:', function () {
describe('Dict', function () {
it('Map new', function (done) {
benchmark('Map new', () => new Map(), done);
Expand Down Expand Up @@ -62,7 +62,7 @@ describe('Benchmark:', function () {
}, done);
});

it.skip(`MultiMap set ${size.toLocaleString('en')}`, function (done) {
it(`MultiMap set ${size.toLocaleString('en')}`, function (done) {
const dict = new MultiMap();
let i = 0;
benchmark(`MultiMap set ${size.toLocaleString('en')}`, () => {
Expand Down

0 comments on commit 9ac8713

Please sign in to comment.