Skip to content

Commit fb7e230

Browse files
committed
Revert "Duck Player Native non-isolated"
This reverts commit 7baec4a.
1 parent 4bc8d47 commit fb7e230

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

injected/playwright.config.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,17 @@ export default defineConfig({
3131
testMatch: [
3232
'integration-test/navigator-interface-insecure.js',
3333
'integration-test/webcompat.spec.js',
34-
'integration-test/message-bridge-apple.spec.js',
35-
'integration-test/duckplayer-native.spec.js',
34+
'integration-test/message-bridge-apple.spec.js'
3635
],
3736
use: { injectName: 'apple', platform: 'macos' },
3837
},
3938
{
4039
name: 'ios',
41-
testMatch: ['integration-test/duckplayer-mobile.spec.js', 'integration-test/duckplayer-mobile-drawer.spec.js'],
40+
testMatch: [
41+
'integration-test/duckplayer-mobile.spec.js',
42+
'integration-test/duckplayer-mobile-drawer.spec.js',
43+
'integration-test/duckplayer-native.spec.js',
44+
],
4245
use: { injectName: 'apple-isolated', platform: 'ios', ...devices['iPhone 13'] },
4346
},
4447
{

injected/src/features.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ const otherFeatures = /** @type {const} */ ([
3333
/** @typedef {baseFeatures[number]|otherFeatures[number]} FeatureName */
3434
/** @type {Record<string, FeatureName[]>} */
3535
export const platformSupport = {
36-
apple: ['webCompat', 'duckPlayerNative', ...baseFeatures],
37-
'apple-isolated': ['duckPlayer', 'brokerProtection', 'performanceMetrics', 'clickToLoad', 'messageBridge', 'favicon'],
36+
apple: ['webCompat', ...baseFeatures],
37+
'apple-isolated': ['duckPlayerNative', 'brokerProtection', 'performanceMetrics', 'clickToLoad', 'messageBridge', 'favicon'],
3838
android: [...baseFeatures, 'webCompat', 'breakageReporting', 'duckPlayer', 'messageBridge'],
3939
'android-broker-protection': ['brokerProtection'],
4040
'android-autofill-password-import': ['autofillPasswordImport'],

0 commit comments

Comments
 (0)