Skip to content

Commit 43af7b8

Browse files
committed
Duck Player Native non-isolated
1 parent c9bc9f3 commit 43af7b8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

injected/playwright.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ 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'
34+
'integration-test/message-bridge-apple.spec.js',
35+
'integration-test/duckplayer-native.spec.js',
3536
],
3637
use: { injectName: 'apple', platform: 'macos' },
3738
},
@@ -40,7 +41,6 @@ export default defineConfig({
4041
testMatch: [
4142
'integration-test/duckplayer-mobile.spec.js',
4243
'integration-test/duckplayer-mobile-drawer.spec.js',
43-
'integration-test/duckplayer-native.spec.js',
4444
],
4545
use: { injectName: 'apple-isolated', platform: 'ios', ...devices['iPhone 13'] },
4646
},

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', ...baseFeatures],
37-
'apple-isolated': ['duckPlayerNative', 'brokerProtection', 'performanceMetrics', 'clickToLoad', 'messageBridge', 'favicon'],
36+
apple: ['webCompat', 'duckPlayerNative', ...baseFeatures],
37+
'apple-isolated': ['duckPlayer', '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)