@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marimo-team/frontend",
3
- "version": "0.24.1-dev127",
3
+ "version": "0.24.1-dev128",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -98,7 +98,7 @@ describe("UrlDetector", () => {
98
98
  expect(img).toHaveAttribute("src", dataUri);
99
99
  });
100
100
 
101
- it.skip("prevents event propagation on link clicks", () => {
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.skip("handles markdown with variables", () => {
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.skip("extractBuffers", () => {
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.skip("should handle arrow files", async () => {
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.skip("returns true for contentEditable", () => {
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);