Skip to content
This repository has been archived by the owner on Apr 2, 2023. It is now read-only.

Releases: karanjitsingh/jstestadapter

v1.4.0

28 Sep 14:43
Compare
Choose a tag to compare

Add option for RunInDomain.

v1.3.0

05 Feb 11:09
f16b30b
Compare
Choose a tag to compare

Added a new config NodeModulesPath for custom node modules.
Made fixes to session error handling.

v1.2.6

05 Feb 10:53
f87be95
Compare
Choose a tag to compare

fix jasmine tests

v1.2.5

15 Sep 09:16
Compare
Choose a tag to compare

npm audit fixes
added support for jest testframework in yarn and pnpm repositories

1.2.1

25 Mar 04:45
Compare
Choose a tag to compare

Fix #43

1.2.0

12 Mar 07:46
5fe35ac
Compare
Choose a tag to compare

Message protocol changes between adapter and javascript runner introduce RunAttachments for test sessions.

Enable code coverage for jest through runsettings using:

<RunSettings>
    <JSTest>
        <TestFramework>jest</TestFramework>
        <CodeCoverageEnabled>true</CodeCoverageEnabled>
    </JSTest>
</RunSettings>

Code coverage support for frameworks

  • Jest
  • Jasmine
  • Mocha

1.1.0

20 Feb 11:48
5c2e554
Compare
Choose a tag to compare

Test attachments support for Jest.

import { TestContext } from 'jstestcontext';

describe('Suite', () => {
    it('Test', () => {.
        // Copies the given file to the appropriate test attachment directory.
        TestContext.Attachments.recordAttachment('/path/to/some/file').
    });
})

Checkout karanjitsingh/jstestcontext for more usage.

1.0.12

08 Feb 05:05
ca8259e
Compare
Choose a tag to compare
fix pipeline