Skip to content

Commit 09b0a03

Browse files
committed
Fix tests, remove android support for now
1 parent fb7d436 commit 09b0a03

File tree

8 files changed

+25
-3
lines changed

8 files changed

+25
-3
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"features": {
3-
3+
"themeColor": {
4+
"state": "disabled",
5+
"exceptions": []
6+
}
47
},
58
"unprotectedTemporary": []
69
}

injected/integration-test/test-pages/favicon/config/favicon-disabled.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"favicon": {
44
"state": "disabled",
55
"exceptions": []
6+
},
7+
"themeColor": {
8+
"state": "disabled",
9+
"exceptions": []
610
}
711
},
812
"unprotectedTemporary": []

injected/integration-test/test-pages/favicon/config/favicon-enabled.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
"settings": {
77
"monitor": true
88
}
9+
},
10+
"themeColor": {
11+
"state": "disabled",
12+
"exceptions": []
913
}
1014
},
1115
"unprotectedTemporary": []

injected/integration-test/test-pages/favicon/config/favicon-monitor-disabled.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
"settings": {
77
"monitor": false
88
}
9+
},
10+
"themeColor": {
11+
"state": "disabled",
12+
"exceptions": []
913
}
1014
},
1115
"unprotectedTemporary": []

injected/integration-test/test-pages/message-bridge/config/message-bridge-disabled.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
"state": "disabled",
66
"exceptions": []
77
},
8+
"themeColor": {
9+
"state": "disabled",
10+
"exceptions": []
11+
},
812
"navigatorInterface": {
913
"state": "enabled",
1014
"exceptions": []

injected/integration-test/test-pages/message-bridge/config/message-bridge-enabled.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
"state": "disabled",
1010
"exceptions": []
1111
},
12+
"themeColor": {
13+
"state": "disabled",
14+
"exceptions": []
15+
},
1216
"messageBridge": {
1317
"exceptions": [],
1418
"state": "enabled",

injected/playwright.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export default defineConfig({
5151
'integration-test/duckplayer-mobile-drawer.spec.js',
5252
'integration-test/web-compat-android.spec.js',
5353
'integration-test/message-bridge-android.spec.js',
54-
'integration-test/theme-color.spec.js',
5554
],
5655
use: { injectName: 'android', platform: 'android', ...devices['Galaxy S5'] },
5756
},

injected/src/features.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const otherFeatures = /** @type {const} */ ([
3535
export const platformSupport = {
3636
apple: ['webCompat', ...baseFeatures],
3737
'apple-isolated': ['duckPlayer', 'brokerProtection', 'performanceMetrics', 'clickToLoad', 'messageBridge', 'favicon', 'themeColor'],
38-
android: [...baseFeatures, 'webCompat', 'breakageReporting', 'duckPlayer', 'messageBridge', 'themeColor'],
38+
android: [...baseFeatures, 'webCompat', 'breakageReporting', 'duckPlayer', 'messageBridge'],
3939
'android-broker-protection': ['brokerProtection'],
4040
'android-autofill-password-import': ['autofillPasswordImport'],
4141
windows: ['cookie', ...baseFeatures, 'windowsPermissionUsage', 'duckPlayer', 'brokerProtection', 'breakageReporting'],

0 commit comments

Comments
 (0)