12 lines
748 B
PowerShell
12 lines
748 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$root = Split-Path $PSScriptRoot -Parent
|
|
$page = [System.IO.File]::ReadAllText((Join-Path $root 'pages/profile/m01-profile-home.vue'), [System.Text.Encoding]::UTF8)
|
|
|
|
foreach ($expected in @('grid-area: 1 / 1','display: flex','pointer-events: none')) {
|
|
if (-not $page.Contains($expected)) { throw "M01 document-flow contract missing: $expected" }
|
|
}
|
|
if ($page -notmatch '(?s)\.profile-hero__identity\s*\{[^}]*position\s*:\s*relative\s*;') { throw 'M01 hero identity must provide the edit-action anchor' }
|
|
if ($page -notmatch '(?s)\.profile-hero__edit\s*\{[^}]*position\s*:\s*absolute\s*;') { throw 'M01 edit action must be positioned within the hero identity block' }
|
|
|
|
Write-Output 'M01-DOCUMENT-FLOW-CONTRACT PASS'
|