Skip to content

Commit

Permalink
Fix perf benchmark tests (#16128)
Browse files Browse the repository at this point in the history
## Description

It seems [PR
15917](#15917) missed
some changes on the .mocha config files.
Sample error:
[buildId=169808](https://dev.azure.com/fluidframework/internal/_build/results?buildId=169808&view=results)
  • Loading branch information
NicholasCouri authored Jun 23, 2023
1 parent f294e96 commit d7e6753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Mocha configuration file for memory profiling tests
*/
const getFluidTestMochaConfig = require("@fluid-internal/test-version-utils/mocharc-common.js");
const getFluidTestMochaConfig = require("@fluid-internal/test-version-utils/mocharc-common.cjs");
const packageDir = `${__dirname}/../../..`;

const config = getFluidTestMochaConfig(packageDir);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Mocha configuration file for runtime profiling tests
*/
const getFluidTestMochaConfig = require("@fluid-internal/test-version-utils/mocharc-common.js");
const getFluidTestMochaConfig = require("@fluid-internal/test-version-utils/mocharc-common.cjs");
const packageDir = `${__dirname}/../../..`;

const config = getFluidTestMochaConfig(packageDir);
Expand Down

0 comments on commit d7e6753

Please sign in to comment.