angular/integration/platform-server-hydration/copy-event-dispatch-contract.mjs
Alan Agius 8630dc8149 test: add Integration tests for hydration and event reply (#55708)
This commit introduces integration tests for hydration and event reply functionalities. Additionally, it implements a payload size check for the `event-dispatch-contract.min.js`.

PR Close #55708
2024-05-07 13:39:55 -07:00

11 lines
377 B
JavaScript

/**
* This script copies '@angular/core/event-dispatch-contract.min.js' to the 'public' directory, ensuring it's available as an asset.
* This is necessary to perform size checks on the distributed script.
*/
import {copyFileSync} from 'node:fs';
copyFileSync(
'./node_modules/@angular/core/event-dispatch-contract.min.js',
'public/event-dispatch-contract.min.js',
);