Skip to content

Releases: gemini-testing/testplane

v8.14.1

28 Jun 10:53
e96958d
Compare
Choose a tag to compare

🐛 Bug fixes

  • don't add error snippets on screenshot error (#961)
  • declare err property on Test type (#960)

v8.14.0

25 Jun 10:36
145321b
Compare
Choose a tag to compare

🚀 Improvements

  • export TestFunctionCtx type (#958)

You can now extend it easily with module augmentation:

import type { TestFunctionCtx as TestplaneTestFunctionCtx } from "testplane";

declare module 'testplane' {
    export interface TestFunctionCtx extends TestplaneTestFunctionCtx {
        myFunc(var1: string, var2: number): Promise<void>;
    }
}

v8.12.2

18 Jun 20:56
ded818b
Compare
Choose a tag to compare

🐛 Bug fixes

  • pass extra field on file events to fix breaking change (#951)

v8.12.0

09 Jun 20:11
Compare
Choose a tag to compare

🚀 Improvements

  • support hot module replacement in component testings (#936)

🐛 Bug fixes

Component testing:

  • do not fail on log html elements (#946)
  • use correct type for config from vite (#946)

v8.11.7

05 Jun 21:20
8dca490
Compare
Choose a tag to compare

🚀 Performance

  • Speed up tests execution with prebuilding client scripts bundle at build time #922
    • 24% performance improvement on first empty test (2500ms -> 1900ms)
    • 80% performance improvement on other worker tests (200ms -> 40ms)

v8.11.6

29 May 14:33
Compare
Choose a tag to compare

🐛 Bug fixes

  • fixed a bug with missing types for describe and it (#941)

v8.11.5

29 May 10:43
Compare
Choose a tag to compare

🐛 Bug fixes

  • correctly specify types for assertView, moveCursorTo, executionContext and currentTest (#933)

hermione/8.9.5

29 May 14:35
Compare
Choose a tag to compare

🐛 Bug fixes

  • fixed a bug with missing types for describe and it (#942)

hermione/8.9.4

29 May 11:13
Compare
Choose a tag to compare

🐛 Bug fixes

  • correctly specify types for assertView, moveCursorTo, executionContext and currentTest (#938)

v8.11.4

16 May 13:51
Compare
Choose a tag to compare

🐛 Bug fixes

  • fix: ignore "execution context was destroyed" error from puppeteer (#930)