diff --git a/.ado/templates/react-native-init-windows.yml b/.ado/templates/react-native-init-windows.yml index a7a5f9a71c1..3bcd93522e8 100644 --- a/.ado/templates/react-native-init-windows.yml +++ b/.ado/templates/react-native-init-windows.yml @@ -159,12 +159,11 @@ steps: parameters: buildLogDirectory: '$(Build.BinariesDirectory)\${{ parameters.platform }}\${{ parameters.configuration }}\BuildLogs' - # #13705 - Temporarily disable test:windows call until we get upstream fix # Only run the following on fabric apps - # - ${{ if and(endsWith(parameters.template, '-app')) }}: - # - script: call yarn test:windows - # displayName: Run jest tests with react-test-renderer - # workingDirectory: $(Agent.BuildDirectory)\testcli + - ${{ if and(endsWith(parameters.template, '-app'), not(startsWith(parameters.template, 'old/'))) }}: + - script: call yarn test:windows + displayName: Run jest tests with react-test-renderer + workingDirectory: $(Agent.BuildDirectory)\testcli # Only test bundling in debug since we already bundle as part of release builds - ${{ if and(endsWith(parameters.template, '-app'), eq(parameters.configuration, 'Debug')) }}: