@marimo-team/frontend 0.24.1-dev127 → 0.24.1-dev128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/data-table/__tests__/url-detector.test.tsx +1 -1
- package/src/core/codemirror/language/__tests__/utils.test.ts +1 -1
- package/src/plugins/impl/panel/__tests__/utils.test.ts +4 -4
- package/src/plugins/impl/vega/__tests__/vega.test.ts +1 -1
- package/src/utils/__tests__/events.test.ts +1 -1
package/package.json
CHANGED
|
@@ -98,7 +98,7 @@ describe("UrlDetector", () => {
|
|
|
98
98
|
expect(img).toHaveAttribute("src", dataUri);
|
|
99
99
|
});
|
|
100
100
|
|
|
101
|
-
it.
|
|
101
|
+
it.fails("prevents event propagation on link clicks", () => {
|
|
102
102
|
const mockStopPropagation = vi.fn();
|
|
103
103
|
render(<UrlDetector parts={parseContent("Check https://marimo.io")} />);
|
|
104
104
|
const link = screen.getByRole("link");
|
|
@@ -158,7 +158,7 @@ Hello,
|
|
|
158
158
|
});
|
|
159
159
|
|
|
160
160
|
// f-strings not currently supported
|
|
161
|
-
it.
|
|
161
|
+
it.fails("handles markdown with variables", () => {
|
|
162
162
|
const mockEditor = createEditor('mo.md(f"""{a}\n{b}!""")');
|
|
163
163
|
// Set to markdown
|
|
164
164
|
switchLanguage(mockEditor, { language: "markdown" });
|
|
@@ -19,8 +19,8 @@ describe("MessageSchema", () => {
|
|
|
19
19
|
});
|
|
20
20
|
});
|
|
21
21
|
|
|
22
|
-
describe
|
|
23
|
-
it("should extract ArrayBuffer and replace with id", () => {
|
|
22
|
+
describe("extractBuffers", () => {
|
|
23
|
+
it.fails("should extract ArrayBuffer and replace with id", () => {
|
|
24
24
|
const buffer = new ArrayBuffer(8);
|
|
25
25
|
const input = { data: buffer };
|
|
26
26
|
const buffers: ArrayBuffer[] = [];
|
|
@@ -31,7 +31,7 @@ describe.skip("extractBuffers", () => {
|
|
|
31
31
|
expect(buffers).toEqual([buffer]);
|
|
32
32
|
});
|
|
33
33
|
|
|
34
|
-
it("should handle nested objects and arrays", () => {
|
|
34
|
+
it.fails("should handle nested objects and arrays", () => {
|
|
35
35
|
const buffer1 = new ArrayBuffer(8);
|
|
36
36
|
const buffer2 = new ArrayBuffer(16);
|
|
37
37
|
const input = {
|
|
@@ -51,7 +51,7 @@ describe.skip("extractBuffers", () => {
|
|
|
51
51
|
expect(buffers).toEqual([buffer1, buffer2]);
|
|
52
52
|
});
|
|
53
53
|
|
|
54
|
-
it("should handle Map objects", () => {
|
|
54
|
+
it.fails("should handle Map objects", () => {
|
|
55
55
|
const buffer = new ArrayBuffer(8);
|
|
56
56
|
const input = new Map([["key", buffer]]);
|
|
57
57
|
const buffers: ArrayBuffer[] = [];
|
|
@@ -470,7 +470,7 @@ Bob.Jones,25
|
|
|
470
470
|
`);
|
|
471
471
|
});
|
|
472
472
|
|
|
473
|
-
it.
|
|
473
|
+
it.fails("should handle arrow files", async () => {
|
|
474
474
|
// Create a small arrow file with schema and one empty record batch
|
|
475
475
|
const arrowData = new Uint8Array([
|
|
476
476
|
0x41,
|
|
@@ -179,7 +179,7 @@ describe("Events.fromInput", () => {
|
|
|
179
179
|
|
|
180
180
|
// jsdom does not implement isContentEditable, so this is tested
|
|
181
181
|
// via shouldIgnoreKeyboardEvent which has a closest() fallback.
|
|
182
|
-
test.
|
|
182
|
+
test.fails("returns true for contentEditable", () => {
|
|
183
183
|
const div = document.createElement("div");
|
|
184
184
|
div.setAttribute("contenteditable", "true");
|
|
185
185
|
document.body.append(div);
|