Skip to content

Releases: scripterio-js/scripterio

v1.11.0

08 Jul 12:04

Choose a tag to compare

1.11.0 - 2025-07-08

Added

Changed

  • Updated documentation
  • Refactored core components

v1.10.0

22 Jun 12:54

Choose a tag to compare

1.10.0 - 2025-06-22

Added

Changed

  • Updated CLI help message
  • Updated documentation
  • Refactored core components

v1.9.1

19 Jun 17:02

Choose a tag to compare

1.9.1 - 2025-06-19

v1.9.0

17 Jun 07:52

Choose a tag to compare

1.9.0 - 2025-06-17

Added

Changed

  • Updated documentation

v1.8.0

04 Jun 09:16

Choose a tag to compare

1.8.0 - 2025-06-04

Added

  • Based on Add results object and Add HTML reporter:
    • HTML reporter with --reporter=html flag that:
      • Shows test files, test suites and test cases in a collapsible tree view
      • Shows total number of tests, passed tests and failed tests
      • Displays error details with stacktraces for failed tests
      • Offers a clean, modern UI with improved readability
      • Supports test file and test suite organization

Changed

  • Updated CLI help message
  • Updated documentation

Fixed

v1.7.0

28 May 09:43

Choose a tag to compare

1.7.0 - 2025-05-28

Added

v1.6.0

27 May 10:29

Choose a tag to compare

1.6.0 - 2025-05-27

Changed

  • Correct version

v1.0.6

26 May 06:53

Choose a tag to compare

1.0.6 - 2025-05-26

Added

  • Based on Add tag test:

  • New context option tags to tag a test or a test group.

  • Now its possible to specify single tag:

    test('test login page', {
      tags: 'regression',
    }, () => {
      // ...
    });

    and run the test\s using additional flag:

    --tags=regression
    • Now its possible to specify multiple tags:
    test('test login page', {
      tags: ['regression', 'smoke']
    }, () => {
      // ...
    });

    and run the test\s using additional flag:

    --tags=regression,smoke
    • Added scripterio-example
      Various examples of how to perform unit, API, and UI testing using ScripterI/O.

Changed

v1.0.5

21 May 21:03

Choose a tag to compare

1.0.5 - 2025-05-21

v1.0.3

20 May 12:33

Choose a tag to compare

1.0.3 - 2025-05-20

Changed

  • Test skip declaration. Moved from:
    describe('description', { skip: true }, () => {})
    //or
    test('description', { skip: true }, () => {})
    
    to:
    describe.skip('description', () => {})
    //or
    test.skip('description', () => {})
    
  • Updated documentation