aboutsummaryrefslogtreecommitdiff
path: root/src/tools/benchmark-builder/index.ts
blob: 51eb80581fe36ed8f6315f2d6706310d5d1b8938 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { SpeedFilled } from '@vicons/material';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Benchmark builder',
  path: '/benchmark-builder',
  description: 'Easily compare execution time of tasks with this very simple online benchmark builder.',
  keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
  component: () => import('./benchmark-builder.vue'),
  icon: SpeedFilled,
  createdAt: new Date('2023-04-05'),
});