Skip to content

Commit e652d2d

Browse files
Use pre-bundled module for better coverage report
1 parent 35255f9 commit e652d2d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/npm-packages/ruby-wasm-wasi/test/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from "fs/promises";
22
import path from "path";
3-
import { DefaultRubyVM } from "../dist/node.cjs";
3+
import { DefaultRubyVM } from "../src/node";
44

55
const rubyModule = (async () => {
66
const binary = await fs.readFile(

packages/npm-packages/ruby-wasm-wasi/test/js_from_rb.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RbValue } from "../dist/index.umd";
1+
import { RbValue } from "../src/index";
22
import { initRubyVM } from "./init";
33

44
describe("Manipulation of JS from Ruby", () => {

packages/npm-packages/ruby-wasm-wasi/test/vm.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RbValue } from "../dist/index.umd.js";
1+
import { RbValue } from "../src/index";
22
import { initRubyVM } from "./init";
33

44
describe("RubyVM", () => {

0 commit comments

Comments
 (0)