Skip to content

Commit

Permalink
Fix-ups purely for TS typing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielearwicker committed Dec 14, 2020
1 parent 043521d commit 07704c3
Show file tree
Hide file tree
Showing 8 changed files with 5,865 additions and 55 deletions.
5,907 changes: 5,858 additions & 49 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/asyncComputedRenderTests.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require('jsdom-global')();

import * as test from "blue-tape";
import test from "blue-tape";
import { testStrictness } from "./util";
import { delay } from "./delay";
import { asyncComputed } from "../src/index"
Expand Down
2 changes: 1 addition & 1 deletion test/asyncComputedTests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as test from "blue-tape";
import test from "blue-tape";
import { testStrictness, waitForLength, Obs } from "./util";
import { delay } from "./delay";
import { observable, runInAction, autorun } from "mobx"
Expand Down
2 changes: 1 addition & 1 deletion test/deprecatedComputedAsyncTests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as test from "blue-tape";
import test from "blue-tape";
import { testCombinations, testStrictness } from "./util";
import { delay } from "./delay";
import { observable, autorun, runInAction, computed } from "mobx"
Expand Down
2 changes: 1 addition & 1 deletion test/promisedComputedTests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as test from "blue-tape";
import test from "blue-tape";
import { testStrictness, waitForLength, Obs } from "./util";
import { delay } from "./delay";
import { observable, runInAction, autorun } from "mobx"
Expand Down
2 changes: 1 addition & 1 deletion test/throttledComputedTests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as test from "blue-tape";
import test from "blue-tape";
import { testStrictness, waitForLength, Obs } from "./util";
import { delay } from "./delay";
import { observable, runInAction, autorun } from "mobx"
Expand Down
2 changes: 1 addition & 1 deletion test/util.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as test from "blue-tape";
import test from "blue-tape";
import { useStrict } from "../src/mobxShim";
import { observable, runInAction } from "mobx"

Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sourceMap": true,
"declaration": true,
"alwaysStrict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"noFallthroughCasesInSwitch": true,
Expand Down

0 comments on commit 07704c3

Please sign in to comment.