Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1a2fe24
update file paths and add syntax export
radium-v Apr 20, 2026
5de778a
feat: add DOM shim and style/template generation utilities
radium-v Apr 20, 2026
2c06c64
Change files
radium-v Apr 21, 2026
af614ab
update vite configuration and add type definitions
radium-v Apr 28, 2026
8d98278
convert playwright config to mjs
radium-v Apr 28, 2026
542692f
remove test export conditions
radium-v Apr 28, 2026
a883335
feat: enhance SSR renderer and CLI with new template generation capab…
radium-v Apr 28, 2026
028d525
remove private flag
radium-v Apr 28, 2026
03eeafb
fix: escape special characters in styles marker regex for template ge…
radium-v Apr 28, 2026
e18cd34
fix webui template generation
radium-v Apr 28, 2026
022e279
add initial tests for DOM shim functionality
radium-v Apr 28, 2026
1d0f713
fix: enable experimental decorators in TypeScript compiler options
radium-v Apr 28, 2026
a8b2462
feat: enhance template generation and testing capabilities
radium-v Apr 29, 2026
8266a9c
update typescript 5 to 5.5.4
radium-v Apr 29, 2026
6a0c17b
feat: enhance documentation with detailed SSR flow and CLI commands
radium-v Apr 29, 2026
9909950
Change files
radium-v Apr 29, 2026
cf0023c
refactor: update test structure to use 'test' API and improve templat…
radium-v Apr 29, 2026
fb4ff4d
patch
radium-v Apr 29, 2026
a2eb4b3
rename playwright test command
radium-v Apr 29, 2026
809a4e1
fix: improve test concurrency for node tests in package.json
radium-v Apr 29, 2026
d482ace
refactor: enhance test structure and improve path handling in server …
radium-v Apr 29, 2026
0c780d5
address PR feedback
radium-v Apr 29, 2026
3b2fb33
address PR feedback
radium-v Apr 30, 2026
ef6696e
address PR feedback
radium-v Apr 30, 2026
d9430c2
fix SSR test widget setup and harness stylesheet
radium-v Apr 30, 2026
f95298a
remove importHelpers setting
radium-v Apr 30, 2026
bb32e17
address PR feedback
radium-v Apr 30, 2026
18459f0
update lockfile
radium-v Apr 30, 2026
d9acdd2
add verbose flags to lage commands
radium-v Apr 30, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-validate-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ jobs:
run: cargo install wasm-pack

- name: Build workspaces
run: npx lage build ${{ github.event_name == 'pull_request' && '--since origin/main' || '' }} --allow-no-target-runs
run: npx lage build ${{ github.event_name == 'pull_request' && '--since origin/main' || '' }} --allow-no-target-runs --verbose

- name: Install playwright dependencies and browsers
run: |
npx playwright install --with-deps

- name: Run tests in all Packages
run: npx lage test:node test:playwright ${{ github.event_name == 'pull_request' && '--since origin/main' || '' }} --allow-no-target-runs
run: npx lage test:node test:playwright ${{ github.event_name == 'pull_request' && '--since origin/main' || '' }} --allow-no-target-runs --verbose
4 changes: 2 additions & 2 deletions .github/workflows/ci-validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
run: cargo install wasm-pack

- name: Build workspaces
run: npx lage build ${{ github.event_name == 'pull_request' && format('--since origin/{0}', github.event.pull_request.base.ref) || '' }} --allow-no-target-runs
run: npx lage build ${{ github.event_name == 'pull_request' && format('--since origin/{0}', github.event.pull_request.base.ref) || '' }} --allow-no-target-runs --verbose

- name: Install playwright dependencies and browsers
run: |
npx playwright install --with-deps

- name: Testing unit tests
run: npx lage test:node test:chromium ${{ github.event_name == 'pull_request' && format('--since origin/{0}', github.event.pull_request.base.ref) || '' }} --allow-no-target-runs
run: npx lage test:node test:chromium ${{ github.event_name == 'pull_request' && format('--since origin/{0}', github.event.pull_request.base.ref) || '' }} --allow-no-target-runs --verbose

- name: Testing final validation
run: npm run test:validation
2 changes: 1 addition & 1 deletion .github/workflows/ci-webui-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: cargo install wasm-pack

- name: Build workspaces
run: npm run build
run: npm run build -- --verbose

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "update file paths and add syntax export",
"packageName": "@microsoft/fast-html",
"email": "863023+radium-v@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "feat: enhance SSR renderer and CLI with new template generation capabilities",
"packageName": "@microsoft/fast-test-harness",
"email": "863023+radium-v@users.noreply.github.com",
"dependentChangeType": "none"
}
Loading
Loading