Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/browser-rbe-proof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ jobs:
consumer_checkout_authority: github-app
force_execution: 'true'
wait: 'true'
retry_cancelled_before_start: 'true'
max_attempts: '4'
dispatch_token: ${{ secrets.GF_REAPI_PROOF_DISPATCH_TOKEN }}

- name: Verify GF proof artifact
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"svelte-check": "^4.4.8",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.1",
"typescript": "next",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
Expand Down
100 changes: 50 additions & 50 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 13 additions & 2 deletions scripts/bazel/run-playwright-local-route-smoke.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,13 @@ try {
: await chromium.launch({
executablePath: browserPath,
headless: true,
args: ['--disable-dev-shm-usage', '--enable-unsafe-swiftshader', '--no-sandbox', '--use-gl=swiftshader'],
args: [
'--disable-dev-shm-usage',
'--enable-unsafe-swiftshader',
'--no-sandbox',
'--use-gl=angle',
'--use-angle=swiftshader',
],
});

for (const viewport of SMOKE_VIEWPORTS) {
Expand Down Expand Up @@ -875,10 +881,15 @@ async function runClickBudgetSmoke(page) {
if (!/Bortle/i.test(skyText)) fail(`Sky answer (Bortle) not reachable in ≤1 click: "${skyText}"`);

// ── Air ≤1 ────────────────────────────────────────────────────────────────
// Same pin (no extra map click). AQI is data-gated, not lens-gated.
// Same pin (no extra map click). AQI is data-gated, not lens-gated: entering
// Air nudges the smog/OpenAQ layer on asynchronously, so wait for the numeric
// answer rather than reading the placeholder.
await setLens('2', 'Air');
const aqiVal = page.locator('.aqi-value').first();
await aqiVal.waitFor({ state: 'attached', timeout: 20_000 });
await page.waitForFunction(() => /\d/.test(document.querySelector('.aqi-value')?.textContent ?? ''), null, {
timeout: 20_000,
});
const airText = ((await aqiVal.textContent()) ?? '').trim();
if (!/\d/.test(airText)) fail(`Air answer (AQI) not reachable in ≤1 click: "${airText}"`);

Expand Down
1 change: 1 addition & 0 deletions tinyland.repo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "./docs/schemas/tinyland-repo-manifest.schema.json",
"schema_version": 1,
"scaffold_tag": "v0.1.0",
"repo": {
"name": "darkmap.phasi.space",
"github": "Jesssullivan/darkmap.phasi.space",
Expand Down
Loading