Skip to content

Commit 06e6fc3

Browse files
Merge pull request #37 from pyscript/fixing-tests
Fixing tests after dependencies updates
2 parents b871bc0 + 5f9fd1f commit 06e6fc3

File tree

6 files changed

+70
-47
lines changed

6 files changed

+70
-47
lines changed

core.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/core.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/utils.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const { all, resolve } = new Proxy(Promise, {
88
get: ($, name) => $[name].bind($),
99
});
1010

11-
const absoluteURL = (path, base = location.href) => new URL(path, base).href;
11+
const absoluteURL = (path, base = location.href) =>
12+
new URL(path, base.replace(/^blob:/, '')).href;
1213

1314
/* c8 ignore start */
1415
let id = 0;

package-lock.json

Lines changed: 61 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "polyscript",
3-
"version": "0.3.7",
3+
"version": "0.3.8",
44
"description": "PyScript single core to rule them all",
55
"main": "./cjs/index.js",
66
"types": "./types/polyscript/esm/index.d.ts",
@@ -37,15 +37,15 @@
3737
"license": "APACHE-2.0",
3838
"devDependencies": {
3939
"@node-loader/import-maps": "^1.1.0",
40-
"@playwright/test": "^1.37.1",
40+
"@playwright/test": "^1.38.0",
4141
"@rollup/plugin-node-resolve": "^15.2.1",
4242
"@rollup/plugin-terser": "^0.4.3",
4343
"ascjs": "^6.0.2",
4444
"c8": "^8.0.1",
4545
"chokidar": "^3.5.3",
4646
"eslint": "^8.49.0",
4747
"linkedom": "^0.15.3",
48-
"rollup": "^3.29.1",
48+
"rollup": "^3.29.2",
4949
"static-handler": "^0.4.2",
5050
"typescript": "^5.2.2"
5151
},
@@ -70,6 +70,6 @@
7070
"coincident": "^0.11.6"
7171
},
7272
"worker": {
73-
"blob": "sha256-WvSj4MN6jdsElxTRMemlcVupW1jtffGrgg0TzI94dsg="
73+
"blob": "sha256-fXQ1VoH403DDslyuep/RYEL2i/xf/QhO9nPZ9neh3V8="
7474
}
7575
}

0 commit comments

Comments
 (0)