Commit 61b2567 1 parent 7fde6a4 commit 61b2567 Copy full SHA for 61b2567
File tree 1 file changed +4
-6
lines changed
packages/SwingSet/test/workers
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
import '@agoric/install-ses' ;
2
2
import test from 'ava' ;
3
- import { resolve } from 'path' ;
4
- import { existsSync } from 'fs' ;
5
- import { locateWorkerBin } from '@agoric/xs-vat-worker' ;
6
3
import { loadBasedir , buildVatController } from '../../src/index' ;
7
4
8
- const xsWorkerBin = locateWorkerBin ( { resolve } ) ;
9
- const maybeTestXS = existsSync ( xsWorkerBin ) ? test : test . skip ;
5
+ // The XS worker is disabled until the xsnap-based approach is ready for
6
+ // testing. Unlike the old approach, I think we'll build xsnap
7
+ // unconditionally, so we won't need the old 'maybeTestXS' conditional.
10
8
11
- maybeTestXS ( 'xs vat manager' , async t => {
9
+ test . skip ( 'xs vat manager' , async t => {
12
10
const config = await loadBasedir ( __dirname ) ;
13
11
config . vats . target . creationOptions = { managerType : 'xs-worker' } ;
14
12
const c = await buildVatController ( config , [ ] ) ;
You can’t perform that action at this time.
0 commit comments