Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
70 lines
2.6 KiB
TypeScript
70 lines
2.6 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import React from "react";
|
|
import { renderToStaticMarkup } from "react-dom/server";
|
|
|
|
import {
|
|
canPromoteTextEditor,
|
|
getTextEditorContentStats,
|
|
isTextEditorCommandWEnabled,
|
|
isTextEditorReadOnly,
|
|
TextEditorPromoteButton,
|
|
} from "./TextEditorPane.tsx";
|
|
import { TooltipProvider } from "../ui/tooltip.tsx";
|
|
import { DEFAULT_KEY_BINDINGS } from "../../domain/models/keyBindings.ts";
|
|
|
|
const wrap = (child: React.ReactElement) =>
|
|
React.createElement(TooltipProvider, null, child);
|
|
|
|
test("disables promoting a modal editor to a tab while a save is running", () => {
|
|
assert.equal(canPromoteTextEditor({ saving: true }), false);
|
|
assert.equal(canPromoteTextEditor({ saving: false }), true);
|
|
assert.equal(isTextEditorReadOnly({ saving: true }), true);
|
|
assert.equal(isTextEditorReadOnly({ saving: false }), false);
|
|
});
|
|
|
|
test("renders the promote button disabled while a save is running", () => {
|
|
const savingMarkup = renderToStaticMarkup(
|
|
wrap(
|
|
React.createElement(TextEditorPromoteButton, {
|
|
saving: true,
|
|
onPromoteToTab: () => {},
|
|
title: "Maximize",
|
|
}),
|
|
),
|
|
);
|
|
const idleMarkup = renderToStaticMarkup(
|
|
wrap(
|
|
React.createElement(TextEditorPromoteButton, {
|
|
saving: false,
|
|
onPromoteToTab: () => {},
|
|
title: "Maximize",
|
|
}),
|
|
),
|
|
);
|
|
|
|
assert.match(savingMarkup, /disabled=""/);
|
|
assert.doesNotMatch(idleMarkup, /disabled=""/);
|
|
});
|
|
|
|
test("counts editor content without allocating line arrays", () => {
|
|
assert.deepEqual(getTextEditorContentStats(""), { lineCount: 1, charCount: 0 });
|
|
assert.deepEqual(getTextEditorContentStats("one\ntwo\n"), { lineCount: 3, charCount: 8 });
|
|
});
|
|
|
|
test("Monaco Cmd+W follows the current close-tab binding", () => {
|
|
const closeTabBinding = DEFAULT_KEY_BINDINGS.find((binding) => binding.action === "closeTab");
|
|
assert.ok(closeTabBinding);
|
|
|
|
assert.equal(isTextEditorCommandWEnabled({ hotkeyScheme: "mac", closeTabBinding, isMac: true }), true);
|
|
assert.equal(isTextEditorCommandWEnabled({ hotkeyScheme: "pc", closeTabBinding, isMac: false }), true);
|
|
assert.equal(isTextEditorCommandWEnabled({ hotkeyScheme: "pc", closeTabBinding, isMac: true }), false);
|
|
assert.equal(isTextEditorCommandWEnabled({ hotkeyScheme: "mac", closeTabBinding, isMac: false }), false);
|
|
assert.equal(isTextEditorCommandWEnabled({ hotkeyScheme: "disabled", closeTabBinding, isMac: true }), false);
|
|
assert.equal(isTextEditorCommandWEnabled({
|
|
hotkeyScheme: "mac",
|
|
closeTabBinding: { ...closeTabBinding, mac: "⌘ + E" },
|
|
isMac: true,
|
|
}), false);
|
|
});
|