chore: prep folders for copying upstream (#987)

This commit is contained in:
Pavel Feldman
2025-09-03 16:02:07 -07:00
committed by GitHub
parent 2461f32d05
commit d142f13d80
73 changed files with 128 additions and 953 deletions

View File

@@ -16,7 +16,7 @@
import { defineConfig } from '@playwright/test';
import type { TestOptions } from '../tests/fixtures.js';
import type { TestOptions } from '../tests/fixtures';
export default defineConfig<TestOptions>({
testDir: './tests',

View File

@@ -16,8 +16,8 @@
import React, { useState, useEffect, useCallback } from 'react';
import { createRoot } from 'react-dom/client';
import { Button, TabItem } from './tabItem.js';
import type { TabInfo } from './tabItem.js';
import { Button, TabItem } from './tabItem';
import type { TabInfo } from './tabItem';
type Status =
| { type: 'connecting'; message: string }

View File

@@ -16,9 +16,9 @@
import React, { useState, useEffect } from 'react';
import { createRoot } from 'react-dom/client';
import { Button, TabItem } from './tabItem.js';
import { Button, TabItem } from './tabItem';
import type { TabInfo } from './tabItem.js';
import type { TabInfo } from './tabItem';
interface ConnectionStatus {
isConnected: boolean;

View File

@@ -17,11 +17,11 @@
import fs from 'fs';
import path from 'path';
import { chromium } from 'playwright';
import { test as base, expect } from '../../tests/fixtures.js';
import { test as base, expect } from '../../tests/fixtures';
import type { Client } from '@modelcontextprotocol/sdk/client/index.js';
import type { BrowserContext } from 'playwright';
import type { StartClient } from '../../tests/fixtures.js';
import type { StartClient } from '../../tests/fixtures';
type BrowserWithExtension = {
userDataDir: string;