Skip to content

Commit

Permalink
fix(benchmark): wc was doing the wrong thing
Browse files Browse the repository at this point in the history
  • Loading branch information
caridy committed Jul 2, 2018
1 parent 23edbd1 commit 39ebd59
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { buildCustomElementConstructor } from 'engine';
import Table from 'benchmark-table-wc';
import Table from 'benchmark-table-component';
import Row from 'benchmark-table-component-row';

import { Store } from '../../table-store';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { buildCustomElementConstructor } from 'engine';
import Table from 'benchmark-table-wc';
import Table from 'benchmark-table-component';
import Row from 'benchmark-table-component-row';

import { Store } from '../../table-store';
Expand All @@ -14,7 +14,7 @@ benchmark(`benchmark-table-wc/clear/1k`, () => {
let store;

before(async () => {
tableElement = document.createElement('benchmark-table');
tableElement = document.createElement('benchmark-table-component');
await insertTableComponent(tableElement);

store = new Store();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { buildCustomElementConstructor } from 'engine';
import Table from 'benchmark-table-wc';
import Table from 'benchmark-table-component';
import Row from 'benchmark-table-component-row';

import { Store } from '../../table-store';
Expand All @@ -13,7 +13,7 @@ benchmark(`benchmark-table-wc/create/10k`, () => {
let tableElement;

before(() => {
tableElement = document.createElement('benchmark-table-wc');
tableElement = document.createElement('benchmark-table-component');
return insertTableComponent(tableElement);
});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { buildCustomElementConstructor } from 'engine';
import Table from 'benchmark-table-wc';
import Table from 'benchmark-table-component';
import Row from 'benchmark-table-component-row';

import { Store } from '../../table-store';
Expand All @@ -13,7 +13,7 @@ benchmark(`benchmark-table-wc/create/1k`, () => {
let tableElement;

before(() => {
tableElement = document.createElement('benchmark-table-wc');
tableElement = document.createElement('benchmark-table-component');
return insertTableComponent(tableElement);
});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { buildCustomElementConstructor } from 'engine';
import Table from 'benchmark-table-wc';
import Table from 'benchmark-table-component';
import Row from 'benchmark-table-component-row';

import { Store } from '../../table-store';
Expand All @@ -14,7 +14,7 @@ benchmark(`benchmark-table-wc/update-10th/1k`, () => {
let store;

before(async () => {
tableElement = document.createElement('benchmark-table-wc');
tableElement = document.createElement('benchmark-table-component');
await insertTableComponent(tableElement);

store = new Store();
Expand Down

0 comments on commit 39ebd59

Please sign in to comment.