Skip to content

Commit 7396d89

Browse files
committed
chore: formatting profileManagerWebview.test.ts
1 parent b996b18 commit 7396d89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/askContainer/webview/profileManagerWebview.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import * as assert from "assert";
77
import * as sinon from "sinon";
88
import * as vscode from "vscode";
9-
import { ProfileManagerWebview } from "../../../src/askContainer/webViews/profileManagerWebview";
9+
import {ProfileManagerWebview} from "../../../src/askContainer/webViews/profileManagerWebview";
1010
import {FakeExtensionContext, FakeWebviewPanelOnDidChangeViewStateEvent} from "../../testUtilities";
11-
import { EXTENSION_STATE_KEY } from "../../../src/constants";
11+
import {EXTENSION_STATE_KEY} from "../../../src/constants";
1212

1313
describe("Webview_deploySkill tests", () => {
1414
let webView: ProfileManagerWebview;
@@ -27,10 +27,10 @@ describe("Webview_deploySkill tests", () => {
2727
fakeContext.globalState.update(EXTENSION_STATE_KEY.LWA_PROFILE, "fakeProfileName");
2828
webView = new ProfileManagerWebview("fakeTitle", "fakeID", fakeContext);
2929

30-
const message = {deleteProfile : "fakeProfileName"};
30+
const message = {deleteProfile: "fakeProfileName"};
3131
const spy = sinon.spy(vscode.window, "showErrorMessage");
3232

3333
await webView.onReceiveMessageListener(message);
3434
assert.deepStrictEqual(true, spy.called);
3535
});
36-
});
36+
});

0 commit comments

Comments
 (0)