Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change format of requests to show module sources #12351

Merged
merged 8 commits into from
Nov 13, 2023
Merged
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
fix tests
  • Loading branch information
Stephen Weatherford authored and Stephen Weatherford committed Nov 7, 2023
commit 636a73c7b5f7f6a501b662710110442094a5c984
7 changes: 3 additions & 4 deletions src/vscode-bicep/src/test/unit/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jest.mock(
Window: 10,
},
StatusBarAlignment: { Left: 1, Right: 2 },
ThemeColor: jest.fn(() => throwNYI()),
ThemeIcon: jest.fn(() => throwNYI()),
ThemeColor: jest.fn(),
ThemeIcon: jest.fn(),
window: {
createStatusBarItem: jest.fn(() => ({
show: jest.fn(() => throwNYI()),
Expand Down Expand Up @@ -66,9 +66,8 @@ jest.mock(
executeCommand: jest.fn(() => throwNYI()),
registerCommand: jest.fn(() => throwNYI()),
},
CodeLen: jest.fn(() => throwNYI()),
l10n: {
t: jest.fn(() => throwNYI()),
t: jest.fn(),
},
}),
{ virtual: true },
Expand Down
Loading