Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchexec/tablegenerator/react-table/MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ changes and improves the reproducibility of the migration process.

**Order (bottom-up):**

- [ ] `src/utils/` (utils.js, filters.js, stats.js, plot.js)
- [x] `src/utils/` (utils.js, filters.js, stats.js, plot.js)
- [ ] `src/workers/` (workerDirector.js, dataUrls.js)
- [ ] `src/components/` (leaf components → central components)
- [ ] `src/components/FilterBox/`
Expand Down
2 changes: 1 addition & 1 deletion benchexec/tablegenerator/react-table/build/main.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions benchexec/tablegenerator/react-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
SelectColumnsButton,
StandardColumnHeader,
} from "./TableComponents";
import { computeStats, statisticsRows } from "../utils/stats.js";
import { computeStats, statisticsRows } from "../utils/stats.ts";
import {
determineColumnWidth,
isNumericColumn,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// SPDX-License-Identifier: Apache-2.0

import React from "react";
import { formatColumnTitle, getRunSetName } from "../utils/utils.js";
import { formatColumnTitle, getRunSetName } from "../utils/utils.tsx";

export const SelectColumnsButton = ({ handler, ...other }) => (
<span onClick={handler} title="" className="selectColumns" {...other}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import StatisticsTable from "../components/StatisticsTable.js";
import fs from "fs";
import renderer from "react-test-renderer";
import { getOverviewProps } from "./utils.js";
import { computeStats, filterComputableStatistics } from "../utils/stats.js";
import { computeStats, filterComputableStatistics } from "../utils/stats.ts";
const testDir = "../test_integration/expected/";

fs.readdirSync(testDir)
Expand Down
Loading