mirror of
https://github.com/github/codeql.git
synced 2026-04-18 13:34:02 +02:00
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
const sinon = require('sinon');
|
|
|
|
function testFunction() {
|
|
const megacliteUrl = "https://a.b.com";
|
|
sinon.assert.calledWith(postStub.firstCall, sinon.match(megacliteUrl));
|
|
}
|