Skip to content

Commit 8091ed3

Browse files
committed
Fix a 1 character mistake :(
1 parent 9081c90 commit 8091ed3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
bundles: ${{ steps.filter.outputs.bundles || steps.filter.outputs.workflows || steps.filter.outputs.devserver }}
4040
libraries: ${{ steps.filter.outputs.libraries || steps.filter.outputs.workflows }}
4141
docs: ${{ steps.filter.outputs.docs || steps.filter.outputs.workflows }}
42-
playwright: $${{ steps.filter.outputs.devserver || steps.filter.outputs.libraries || steps.filter.outputs.tabs }}
42+
playwright: ${{ steps.filter.outputs.devserver || steps.filter.outputs.libraries || steps.filter.outputs.tabs }}
4343

4444
test:
4545
name: Verify all tests pass and build success

lib/buildtools/src/testing.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ async function runVitest(mode: VitestRunMode, filters: string[] | undefined, pro
4646
* Run Vitest on the given tab or bundle
4747
*/
4848
export function runIndividualVitest(mode: VitestRunMode, asset: ResolvedBundle | ResolvedTab, options: RunVitestBoolOptions) {
49-
5049
if (asset.type === 'tab') {
5150
return runVitest(mode, [asset.directory], [{
5251
// @ts-expect-error Weird stuff happening with plugin again
@@ -58,7 +57,7 @@ export function runIndividualVitest(mode: VitestRunMode, asset: ResolvedBundle |
5857
'@blueprintjs/icons',
5958
'gl-matrix',
6059
'js-slang',
61-
'lodash'
60+
'lodash',
6261
]
6362
},
6463
test: {

0 commit comments

Comments
 (0)