TestyTs icon indicating copy to clipboard operation
TestyTs copied to clipboard

✔️ Modern TypeScript testing framework.

Results 18 TestyTs issues
Sort by recently updated
recently updated
newest added

[There's a known issue in ts-node](https://github.com/TypeStrong/ts-node/issues/1647) that occurred due to breaking API changes that ts-node did not account for. The fix is in version 10.6 of ts-node

I have a testy.json configured as: ```json "tsconfig": "./tsconfig.spec.json", "include":[ "test/**/*.spec.ts" ] ``` Testyts version 1.5.0 When I run `testyts`, there are errors: > An error occured while executing the...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Hi, Please add error handling for `@BeforeAll`, `@AfterAll`, `@BeforeEach`, `@AfterEach` methods Version: 2.0.0-beta.7 ex: ```ecmascript 6 @TestSuite() export class TestSuit { @BeforeAll() async beforeAll() { throw new Error('Some error'); }...

I structured my TypeScript NodeJS app as ES modules (`"type": "module"` in package.json). This is the output of `testyts`: ``` An error occured while executing the following command: /usr/bin/node /node_modules/.bin/testyts....

bug

Hi, I'm currently using a beta feature from TypeScript 4.1 beta, which has a new flag in tsconfig.json called `noUncheckedIndexedAccess`. ts-node doesn't understand this yet, which is evident when I...

It would be interesting to be able to configure testy using a `.ts` file. This would make testy more extensible. For instance, it would be easy to use an external...

enhancement

Recently, the logging was improved by printing the stacktrace of failed tests. It would be interesting to see a summary of the failed tests to prevent having to scroll to...

enhancement
help wanted

OS: ubuntu 20.04 LTS npm: 7.11.1 ``` alain@aegnor:~/devel_syno/NodeJS/svg-be-draw$ npm i testyts --save-dev added 24 packages, and audited 144 packages in 5s 15 packages are looking for funding run `npm fund`...

In the project [sgvizler2](https://github.com/BorderCloud/sgvizler2), I try to use TestyTs but my project use also JQuery. I have the error: ``` ERROR An error occured while executing the following command: /usr/bin/node...