11import { TestConfig , FrameworkInfo } from "./util/frameworkTypes" ;
22
33import { alienFramework } from "./frameworks/alienSignals" ;
4+ import { tc39SignalsProposalAlienPolyfill } from "./frameworks/tc39-proposal-signals-alien-polyfill" ;
45import { angularFramework } from "./frameworks/angularSignals" ;
56import { mobxFramework } from "./frameworks/mobx" ;
67import { tc39SignalsProposalStage0 } from "./frameworks/tc39-proposal-signals-stage-0" ;
@@ -20,21 +21,22 @@ import { tansuFramework } from "./frameworks/tansu";
2021
2122export const frameworkInfo : FrameworkInfo [ ] = [
2223 { framework : alienFramework , testPullCounts : true } ,
23- { framework : preactSignalFramework , testPullCounts : true } ,
24- { framework : svelteFramework , testPullCounts : true } ,
24+ { framework : tc39SignalsProposalAlienPolyfill , testPullCounts : true } ,
25+ // { framework: preactSignalFramework, testPullCounts: true },
26+ // { framework: svelteFramework, testPullCounts: true },
2527 { framework : tc39SignalsProposalStage0 , testPullCounts : true } ,
26- { framework : reactivelyFramework , testPullCounts : true } ,
27- { framework : sFramework } ,
28- { framework : tansuFramework , testPullCounts : true } ,
29- { framework : angularFramework , testPullCounts : true } ,
30- { framework : molWireFramework , testPullCounts : true } ,
31- { framework : obyFramework , testPullCounts : true } ,
32- { framework : signiaFramework , testPullCounts : true } ,
33- { framework : solidFramework } ,
34- { framework : usignalFramework , testPullCounts : true } ,
35- { framework : vueReactivityFramework , testPullCounts : true } ,
36- // NOTE: MobX currently hangs on some of the `dynamic` tests and `cellx` tests, so disable it if you want to run them. (https://github.com/mobxjs/mobx/issues/3926)
37- { framework : mobxFramework , testPullCounts : false } ,
28+ // { framework: reactivelyFramework, testPullCounts: true },
29+ // { framework: sFramework },
30+ // { framework: tansuFramework, testPullCounts: true },
31+ // { framework: angularFramework, testPullCounts: true },
32+ // { framework: molWireFramework, testPullCounts: true },
33+ // { framework: obyFramework, testPullCounts: true },
34+ // { framework: signiaFramework, testPullCounts: true },
35+ // { framework: solidFramework },
36+ // { framework: usignalFramework, testPullCounts: true },
37+ // { framework: vueReactivityFramework, testPullCounts: true },
38+ // // NOTE: MobX currently hangs on some of the `dynamic` tests and `cellx` tests, so disable it if you want to run them. (https://github.com/mobxjs/mobx/issues/3926)
39+ // { framework: mobxFramework, testPullCounts: false },
3840
3941 // --- Disabled frameworks ---
4042 // NOTE: the compostate adapter is currently broken and unused.
0 commit comments