Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/e0selmy4v/ie-passer
A debugger based on HTA, which can test your code in IE browser
https://github.com/e0selmy4v/ie-passer
debug debugger ie ie6 tdd test testing
Last synced: about 2 months ago
JSON representation
A debugger based on HTA, which can test your code in IE browser
- Host: GitHub
- URL: https://github.com/e0selmy4v/ie-passer
- Owner: E0SelmY4V
- License: gpl-3.0
- Created: 2022-12-05T19:42:45.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T17:46:47.000Z (about 2 years ago)
- Last Synced: 2024-12-12T01:39:16.755Z (2 months ago)
- Topics: debug, debugger, ie, ie6, tdd, test, testing
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/ie-passer
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# IE Passer
Debug in IE easily!
This debug tool is based on HTA, which is an 'old' technology to make *HTML Application* come true.
Because HTA's host program is IE (*mshta.exe*), you can debug your JS in IE through HTA.HTA can be used only in Windows, just like this tool.
This tool packaged HTA test into a small function, making your debug easier.
## Usage
```javascript
import iePasser from 'ie-passer';
// or
const iePasser = require('ie-passer');iePasser(
'Your:\\Project\\index.ie.js',
{
test0: () => {
// some test...
},
test1: () => {
// some test...
},
},
{
version: '5' // version of IE core
}
);
```Then, a magic HTA window will be opened.
You can click the button displaying tests' name to do the test.