Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
webpack-jsdom-tape-plugin
Advanced tools
$ npm install --save-dev webpack-jsdom-tape-plugin
import WebpackJsdomTapePlugin from "webpack-jsdom-tape-plugin"
creates a test runner for when the given entry
, at the given url
.
when the test is done, process exits with 0 if passed, and 1 if any errors occured.
exit
option allow you to change this behavior of this plugin.
Note that using exit: false
might introduce a memory leak since jsdom might
not clean everything properly.
errorsOnly
option allow to only show tests on error allowing clean ouput.
// tape is included as a global
tape("test name", (test) => {
test.equal(1, 1, "ok")
test.end()
})
You will need a webpack entry that require all tests files and an html file that will include this entry
src/tests.js
// where you might need to use webpack file-loader for the following html file
import "./tests.html"
// you may need to include your polyfill here
// eg: import "babel/polyfills"
var context = require.context(
// place where your modules are
"../web_modules",
true,
// you pattern to glob the test files
/__tests__\/.*\.js$/
)
context.keys().forEach(context)
src/tests.html
<!doctype html>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Tests</title>
<h1>TAP</h1>
<pre id="test-Pre"></pre>
<script>
var log = console.log
var target = document.getElementById("test-Pre")
window.console.log = function(message) {
target.appendChild(document.createTextNode(message + "\n"))
log.apply(console, arguments)
}
</script>
<script src="./tests.js"></script>
es6 webpack.config.js
import WebpackJsdomTapePlugin from "webpack-jsdom-tape-plugin"
//...
export default {
// ...
plugins: [
WebpackJsdomTapePlugin({
url: "http://localhost:8080/",
entry: ["tests.js"],
// NOTE HERE THAT YOU WILL NEED AN ENTRY THAT SHOULD BE "tests"
// to be sure a "tests.js" is in the assets list
exit: false,
errorsOnly: false,
})
]
}
FAQs
a webpack plugin to run tape tests over jsdom
The npm package webpack-jsdom-tape-plugin receives a total of 1 weekly downloads. As such, webpack-jsdom-tape-plugin popularity was classified as not popular.
We found that webpack-jsdom-tape-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.