Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Jan 12, 2025
1 parent 8c2989d commit ac88d81
Show file tree
Hide file tree
Showing 4 changed files with 388 additions and 20 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@preact/signals": "^2.0.0",
"@reactively/core": "^0.0.8",
"@vue/reactivity": "^3.5.13",
"alien-signals": "1.0.0-alpha.1",
"alien-signals": "1.0.0-alpha.3",
"compostate": "0.6.0-alpha.1",
"kairo": "0.6.0-rc.0",
"mobx": "^6.13.5",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 16 additions & 14 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { TestConfig, FrameworkInfo } from "./util/frameworkTypes";

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

export const frameworkInfo: FrameworkInfo[] = [
{ framework: alienFramework, testPullCounts: true },
{ framework: preactSignalFramework, testPullCounts: true },
{ framework: svelteFramework, testPullCounts: true },
{ framework: tc39SignalsProposalAlienPolyfill, testPullCounts: true },
// { framework: preactSignalFramework, testPullCounts: true },
// { framework: svelteFramework, testPullCounts: true },
{ framework: tc39SignalsProposalStage0, testPullCounts: true },
{ framework: reactivelyFramework, testPullCounts: true },
{ framework: sFramework },
{ framework: tansuFramework, testPullCounts: true },
{ framework: angularFramework, testPullCounts: true },
{ framework: molWireFramework, testPullCounts: true },
{ framework: obyFramework, testPullCounts: true },
{ framework: signiaFramework, testPullCounts: true },
{ framework: solidFramework },
{ framework: usignalFramework, testPullCounts: true },
{ framework: vueReactivityFramework, testPullCounts: true },
// 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)
{ framework: mobxFramework, testPullCounts: false },
// { framework: reactivelyFramework, testPullCounts: true },
// { framework: sFramework },
// { framework: tansuFramework, testPullCounts: true },
// { framework: angularFramework, testPullCounts: true },
// { framework: molWireFramework, testPullCounts: true },
// { framework: obyFramework, testPullCounts: true },
// { framework: signiaFramework, testPullCounts: true },
// { framework: solidFramework },
// { framework: usignalFramework, testPullCounts: true },
// { framework: vueReactivityFramework, testPullCounts: true },
// // 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)
// { framework: mobxFramework, testPullCounts: false },

// --- Disabled frameworks ---
// NOTE: the compostate adapter is currently broken and unused.
Expand Down
Loading

0 comments on commit ac88d81

Please sign in to comment.