Skip to content

Commit ac88d81

Browse files
committed
1 parent 8c2989d commit ac88d81

File tree

4 files changed

+388
-20
lines changed

4 files changed

+388
-20
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@preact/signals": "^2.0.0",
1919
"@reactively/core": "^0.0.8",
2020
"@vue/reactivity": "^3.5.13",
21-
"alien-signals": "1.0.0-alpha.1",
21+
"alien-signals": "1.0.0-alpha.3",
2222
"compostate": "0.6.0-alpha.1",
2323
"kairo": "0.6.0-rc.0",
2424
"mobx": "^6.13.5",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/config.ts

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { TestConfig, FrameworkInfo } from "./util/frameworkTypes";
22

33
import { alienFramework } from "./frameworks/alienSignals";
4+
import { tc39SignalsProposalAlienPolyfill } from "./frameworks/tc39-proposal-signals-alien-polyfill";
45
import { angularFramework } from "./frameworks/angularSignals";
56
import { mobxFramework } from "./frameworks/mobx";
67
import { tc39SignalsProposalStage0 } from "./frameworks/tc39-proposal-signals-stage-0";
@@ -20,21 +21,22 @@ import { tansuFramework } from "./frameworks/tansu";
2021

2122
export 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

Comments
 (0)