Skip to content

Commit 3ed796d

Browse files
committed
test(ssr): remove SSR tests env var
1 parent 095a777 commit 3ed796d

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/unit.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ jobs:
6666
run: yarn test:types
6767
- name: Run unit tests
6868
run: yarn test:ci
69-
# TODO [#4815]: enable all SSR v2 tests
70-
- name: Run experimental SSR fixture tests
71-
run: TEST_SSR_COMPILER=1 yarn test packages/@lwc/ssr-compiler/src/__tests__/fixtures.spec.ts
7269
- name: Upload unit test coverage report
7370
uses: actions/upload-artifact@v4
7471
with:

packages/@lwc/ssr-compiler/src/__tests__/fixtures.spec.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ async function compileFixture({ input, dirname }: { input: string; dirname: stri
7777
return outputFile;
7878
}
7979

80-
// We will enable this for realsies once all the tests are passing, but for now having the env var avoids
81-
// running these tests in CI while still allowing for local testing.
82-
describe.runIf(process.env.TEST_SSR_COMPILER).concurrent('fixtures', () => {
80+
describe.concurrent('fixtures', () => {
8381
testFixtureDir(
8482
{
8583
root: path.resolve(__dirname, '../../../engine-server/src/__tests__/fixtures'),

0 commit comments

Comments
 (0)