Skip to content

Commit

Permalink
use proper json files
Browse files Browse the repository at this point in the history
  • Loading branch information
ktrz committed Apr 3, 2024
1 parent eb5f531 commit 9591acd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions test/__snapshots__/extract.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ exports[`extractResult() extracts benchmark output from catch2 - issue16_output.
}
`;

exports[`extractResult() extracts benchmark output from customBiggerIsBetter - customBiggerIsBetter_output.txt 1`] = `
exports[`extractResult() extracts benchmark output from customBiggerIsBetter - customBiggerIsBetter_output.json 1`] = `
{
"benches": [
{
Expand Down Expand Up @@ -331,7 +331,7 @@ Anything Else!",
}
`;

exports[`extractResult() extracts benchmark output from customSmallerIsBetter - customSmallerIsBetter_output.txt 1`] = `
exports[`extractResult() extracts benchmark output from customSmallerIsBetter - customSmallerIsBetter_output.json 1`] = `
{
"benches": [
{
Expand Down Expand Up @@ -644,7 +644,7 @@ exports[`extractResult() extracts benchmark output from go - go_output.txt 1`] =
}
`;

exports[`extractResult() extracts benchmark output from googlecpp - googlecpp_output.txt 1`] = `
exports[`extractResult() extracts benchmark output from googlecpp - googlecpp_output.json 1`] = `
{
"benches": [
{
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions test/extract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('extractResult()', function () {
},
{
tool: 'googlecpp',
file: 'googlecpp_output.txt',
file: 'googlecpp_output.json',
},
{
tool: 'pytest',
Expand Down Expand Up @@ -125,11 +125,11 @@ describe('extractResult()', function () {
},
{
tool: 'customBiggerIsBetter',
file: 'customBiggerIsBetter_output.txt',
file: 'customBiggerIsBetter_output.json',
},
{
tool: 'customSmallerIsBetter',
file: 'customSmallerIsBetter_output.txt',
file: 'customSmallerIsBetter_output.json',
},
];

Expand Down

0 comments on commit 9591acd

Please sign in to comment.