We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ded6ed8 commit 9dc2cdeCopy full SHA for 9dc2cde
packages/transform-io/typescript/test/node/read-transform-node-test.js
@@ -0,0 +1,12 @@
1
+import test from "ava";
2
+import path from "path";
3
+
4
+import { readTransformNode } from "../../dist/index-node.js";
5
+import { testInputPath, verifyTestLinearTransform } from "./common.js";
6
7
+const testInputFilePath = path.join(testInputPath, "LinearTransform.mat");
8
9
+test("readTransformNode reads a fil epath given on the local filesystem", async (t) => {
10
+ const transform = await readTransformNode(testInputFilePath);
11
+ verifyTestLinearTransform(t, transform);
12
+});
0 commit comments