Skip to content

Commit

Permalink
ci(github-actions): fix-failing-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Masquerade-Circus committed Dec 28, 2022
1 parent ba6bb9d commit d2b7ed0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@
"nyc": {
"exclude": [
"test",
"plugins/utils",
"dist"
"register.js"
]
},
"remarkConfig": {
Expand Down
2 changes: 1 addition & 1 deletion test/node_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe("Node test", () => {
await icons("./assets/icon.png", favicons);
expect(fs.existsSync(".tmp/favicon.ico")).toBeTruthy();
expect(fs.existsSync(".tmp/links.js")).toBeTruthy();
expect(fs.existsSync(".tmp/manifest.json")).toBeTruthy();
expect(fs.existsSync(".tmp/manifest.webmanifest")).toBeTruthy();
});

it("should remove unused css", async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/proxy-signals_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import "valyrian.js/node";

import { mount, onUnmount, unmount, update, v } from "valyrian.js";

import { ProxySignal } from "../lib/proxy-signal";
import { ProxySignal } from "valyrian.js/proxy-signal";
import expect from "expect";

describe("ProxySignals", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/signals_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { afterEach, describe, it } from "mocha";
// eslint-disable-next-line no-unused-vars
import { mount, onCleanup, unmount, update, v } from "valyrian.js";

import { Signal } from "../lib/signal";
import { Signal } from "valyrian.js/signal";
import expect from "expect";

describe("Signal", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/store_test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Store } from "../lib/store";
import { Store } from "valyrian.js/store";
import expect from "expect";

function getNewStore() {
Expand Down

0 comments on commit d2b7ed0

Please sign in to comment.