-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): Support setting Chromium binary in API (#111)
Summary: Support setting the Chromium binary in MemLab programming API: ``` const {findLeaks, takeSnapshots} = require('memlab/api'); (async function () { const scenario = { url: () => 'https://www.facebook.com', }; const result = await takeSnapshots({scenario, chromiumBinary: binaryPath}); const leaks = findLeaks(result); })(); ``` Differential Revision: D53386483 fbshipit-source-id: 5bd0d3ce0cd839a0a4ae3186059d99c9cfc3275f
- Loading branch information
1 parent
d402370
commit 6de17a7
Showing
5 changed files
with
36 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters