Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Format
  • Loading branch information
Zentrik committed Jan 8, 2026
commit ac45ac4ed2f27f44fb8e562ca9acb9bbe60393eb
8 changes: 3 additions & 5 deletions src/test/unittest/noConfigDebugInit.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,9 @@ suite('setup for no-config debug scenario', function () {

// Assert
sinon.assert.calledOnce(createFileSystemWatcherFunct);
const expectedPattern = sinon
.match.instanceOf(RelativePattern)
.and(
sinon.match.has('base', path.join(os.tmpdir(), '.noConfigDebugAdapterEndpoints')),
)
const expectedPattern = sinon.match
.instanceOf(RelativePattern)
.and(sinon.match.has('base', path.join(os.tmpdir(), '.noConfigDebugAdapterEndpoints')))
.and(sinon.match.has('pattern', sinon.match(/^endpoint-[0-9a-f]{16}\.txt$/)));
sinon.assert.calledWith(createFileSystemWatcherFunct, expectedPattern);
});
Expand Down
Loading