Skip to content

Commit

Permalink
chore: remove some unused test environments (remirror#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocavue authored Aug 20, 2021
1 parent 251ba63 commit f1a9a07
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 264 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ cc-reporter
## Storybook
**/storybook-static

/.detoxrc.json
/typedoc.json

.linaria-cache
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"delay": "^5.0.0",
"detox": "^18.19.0",
"downlevel-dts": "^0.7.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.2.0",
Expand Down
8 changes: 2 additions & 6 deletions packages/testing/src/playwright/playwright-types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Circus } from '@jest/types';
import { JestProcessManagerOptions } from 'jest-process-manager';

export type TestEnvironment = 'playwright' | 'detox' | 'appium' | 'spectron';
export type TestEnvironment = 'playwright';
export type TestServerName = 'next' | 'docs' | 'storybook-react';
export type PlaywrightBrowserName = 'firefox' | 'chromium' | 'webkit';

Expand All @@ -18,11 +18,7 @@ interface PlaywrightTestServer extends BaseTestServer {
name: TestServerName;
}

interface SpectronTestServer extends BaseTestServer {
environment: 'spectron';
}

export type TestServer = PlaywrightTestServer | SpectronTestServer;
export type TestServer = PlaywrightTestServer;

/**
* Declare the globals used throughout tests
Expand Down
Loading

0 comments on commit f1a9a07

Please sign in to comment.