diff --git a/playground/pages/third-parties/google-maps/sfcs.vue b/playground/pages/third-parties/google-maps/sfcs.vue
index c3617dac8..6c924e153 100644
--- a/playground/pages/third-parties/google-maps/sfcs.vue
+++ b/playground/pages/third-parties/google-maps/sfcs.vue
@@ -65,22 +65,22 @@ const zoom = ref(8)
const googleMapsRef = useTemplateRef('googleMapsRef')
-whenever(() => googleMapsRef.value?.googleMaps, (googleMaps) => {
+whenever(() => googleMapsRef.value?.mapsApi, (mapsApi) => {
heatmapLayerData.value.push(...[
- new googleMaps.LatLng(-33.8688, 151.2093),
- new googleMaps.LatLng(-33.8690, 151.2100),
- new googleMaps.LatLng(-33.8700, 151.2150),
- new googleMaps.LatLng(-33.8710, 151.2200),
- new googleMaps.LatLng(-33.8720, 151.2250),
- new googleMaps.LatLng(-33.8730, 151.2300),
- new googleMaps.LatLng(-33.8740, 151.2350),
- new googleMaps.LatLng(-33.8750, 151.2400),
- new googleMaps.LatLng(-33.8760, 151.2450),
- new googleMaps.LatLng(-33.8770, 151.2500),
- new googleMaps.LatLng(-33.8780, 151.2550),
- new googleMaps.LatLng(-33.8790, 151.2600),
- new googleMaps.LatLng(-33.8800, 151.2650),
- new googleMaps.LatLng(-33.8810, 151.2700),
+ new mapsApi.LatLng(-33.8688, 151.2093),
+ new mapsApi.LatLng(-33.8690, 151.2100),
+ new mapsApi.LatLng(-33.8700, 151.2150),
+ new mapsApi.LatLng(-33.8710, 151.2200),
+ new mapsApi.LatLng(-33.8720, 151.2250),
+ new mapsApi.LatLng(-33.8730, 151.2300),
+ new mapsApi.LatLng(-33.8740, 151.2350),
+ new mapsApi.LatLng(-33.8750, 151.2400),
+ new mapsApi.LatLng(-33.8760, 151.2450),
+ new mapsApi.LatLng(-33.8770, 151.2500),
+ new mapsApi.LatLng(-33.8780, 151.2550),
+ new mapsApi.LatLng(-33.8790, 151.2600),
+ new mapsApi.LatLng(-33.8800, 151.2650),
+ new mapsApi.LatLng(-33.8810, 151.2700),
])
})
@@ -89,13 +89,12 @@ whenever(() => googleMapsRef.value?.googleMaps, (googleMaps) => {
-const mapOptions = {
- center: { lat: -34.397, lng: 150.644 },
- styles: [{ elementType: 'labels', stylers: [{ visibility: 'off' }, { color: '#f49f53' }] }, { featureType: 'landscape', stylers: [{ color: '#f9ddc5' }, { lightness: -7 }] }, { featureType: 'road', stylers: [{ color: '#813033' }, { lightness: 43 }] }, { featureType: 'poi.business', stylers: [{ color: '#645c20' }, { lightness: 38 }] }, { featureType: 'water', stylers: [{ color: '#1994bf' }, { saturation: -69 }, { gamma: 0.99 }, { lightness: 43 }] }, { featureType: 'road.local', elementType: 'geometry.fill', stylers: [{ color: '#f19f53' }, { weight: 1.3 }, { visibility: 'on' }, { lightness: 16 }] }, { featureType: 'poi.business' }, { featureType: 'poi.park', stylers: [{ color: '#645c20' }, { lightness: 39 }] }, { featureType: 'poi.school', stylers: [{ color: '#a95521' }, { lightness: 35 }] }, {}, { featureType: 'poi.medical', elementType: 'geometry.fill', stylers: [{ color: '#813033' }, { lightness: 38 }, { visibility: 'off' }] }, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, { elementType: 'labels' }, { featureType: 'poi.sports_complex', stylers: [{ color: '#9e5916' }, { lightness: 32 }] }, {}, { featureType: 'poi.government', stylers: [{ color: '#9e5916' }, { lightness: 46 }] }, { featureType: 'transit.station', stylers: [{ visibility: 'off' }] }, { featureType: 'transit.line', stylers: [{ color: '#813033' }, { lightness: 22 }] }, { featureType: 'transit', stylers: [{ lightness: 38 }] }, { featureType: 'road.local', elementType: 'geometry.stroke', stylers: [{ color: '#f19f53' }, { lightness: -10 }] }, {}, {}, {}],
-} satisfies google.maps.MapOptions
-
-
-
-
-
diff --git a/test/e2e-dev/first-party.test.ts b/test/e2e-dev/first-party.test.ts
index 7397d106a..b69e24c2f 100644
--- a/test/e2e-dev/first-party.test.ts
+++ b/test/e2e-dev/first-party.test.ts
@@ -1,9 +1,9 @@
import { existsSync, readdirSync, readFileSync, rmSync, writeFileSync } from 'node:fs'
import { join } from 'node:path'
import { createResolver } from '@nuxt/kit'
+import { getProxyDef, registry } from '@nuxt/scripts/registry'
import { $fetch, getBrowser, setup, url } from '@nuxt/test-utils/e2e'
import { afterAll, beforeAll, describe, expect, it } from 'vitest'
-import { getProxyDef, registry } from '@nuxt/scripts/registry'
const { resolve } = createResolver(import.meta.url)
const fixtureDir = resolve('../fixtures/first-party')
@@ -96,7 +96,6 @@ const ANONYMIZED_FINGERPRINT_PARAMS = [
'client_user_agent',
]
-
/** Check that a capture has a fully-resolved privacy object with all six boolean flags. */
function hasResolvedPrivacy(c: Record): boolean {
const p = c.privacy