()
| 824 | export const compileAndTestE2e = series(compileForProdAndDocs, testE2e); |
| 825 | |
| 826 | export const testProd = async () => { |
| 827 | await execute('attw --pack dist --format table-flipped --profile esm-only'); |
| 828 | await test(['test/prod']); |
| 829 | }; |
| 830 | export const compileAndTestProd = series(compileForProdAndDocs, testProd); |
| 831 | |
| 832 | export const serveDocs = async () => { |