Skip to content

Commits

Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Nov 16, 2022

  1. 3.16.8

    searls committed Nov 16, 2022
    Copy the full SHA
    47bf3da View commit details
    Browse the repository at this point in the history
  2. changelog

    searls committed Nov 16, 2022
    Copy the full SHA
    2b76fd2 View commit details
    Browse the repository at this point in the history
  3. drop 14.x from tests

    searls committed Nov 16, 2022
    Copy the full SHA
    1b1810a View commit details
    Browse the repository at this point in the history
  4. Merge pull request testdouble#500 from quinnturner/patch-1

    fix: replaceEsm typings
    searls committed Nov 16, 2022
    Copy the full SHA
    ffdf3ad View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    7b20b76 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    6ef85f9 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. fix: replaceEsm typings

    Currently:
    
    ```ts
    // `subscriptions` is `void`
    const subscriptions = await td.replaceEsm(
          '../../subscriptions.js',
    );
    ```
    
    Now:
    
    ```ts
    // `subscriptions` is `{ [namedExport: string]: any; default?: any; }`
    const subscriptions = await td.replaceEsm(
          '../../subscriptions.js',
    );
    ```
    quinnturner committed Nov 14, 2022
    Copy the full SHA
    2b24cff View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    7c96564 View commit details
    Browse the repository at this point in the history
  3. update changelog

    searls committed Nov 14, 2022
    Copy the full SHA
    3206d67 View commit details
    Browse the repository at this point in the history
  4. 3.16.7

    searls committed Nov 14, 2022
    Copy the full SHA
    3639d46 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2022

  1. Copy the full SHA
    0825a6a View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    59bed05 View commit details
    Browse the repository at this point in the history
  3. take 18 out of the matrix

    searls committed Nov 13, 2022
    Copy the full SHA
    9c725ed View commit details
    Browse the repository at this point in the history
  4. skip test on node 14

    searls committed Nov 13, 2022
    Copy the full SHA
    3bf61c1 View commit details
    Browse the repository at this point in the history
  5. fix test for node 16+

    searls committed Nov 13, 2022
    Copy the full SHA
    6318d0d View commit details
    Browse the repository at this point in the history
  6. Create node.js.yml

    searls committed Nov 13, 2022
    Copy the full SHA
    1dce317 View commit details
    Browse the repository at this point in the history
  7. Merge pull request testdouble#499 from asdftd/main

    Improve replace typings
    searls committed Nov 13, 2022
    Copy the full SHA
    fcfb3f3 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

  1. Improve replace typings

    asdftd committed Oct 25, 2022
    Copy the full SHA
    07fdfbc View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. 3.16.6

    searls committed Jun 14, 2022
    Copy the full SHA
    de7afa0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request testdouble#490 from alexlafroscia/add-types-for-no…

    …denext
    
    Add `types` export condition
    searls committed Jun 14, 2022
    Copy the full SHA
    4caf56f View commit details
    Browse the repository at this point in the history
  3. add types export condition

    For a TypeScript project that has `moduleResolution: "nodenext"` set, TypeScript won't respect the existance of an `index.d.ts` when providing type definitions for a module.
    
    Explicitly adding the `"types"` condition in the export definition, as supported by TypeScript 4.7 and later, resolves this problem.
    alexlafroscia committed Jun 14, 2022
    Copy the full SHA
    51416b8 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2022

  1. fix changelog

    searls committed Apr 19, 2022
    Copy the full SHA
    c408bc9 View commit details
    Browse the repository at this point in the history
  2. 3.16.5

    searls committed Apr 19, 2022
    Copy the full SHA
    809b955 View commit details
    Browse the repository at this point in the history
  3. 3.16.4

    searls committed Apr 19, 2022
    Copy the full SHA
    86b7a14 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2022

  1. Merge pull request testdouble#481 from johnbotris/promise-stubber-the…

    …n-return
    
    Add `thenReturn` to `PromiseStubber` type declaration
    searls committed Apr 17, 2022
    Copy the full SHA
    62b1884 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2022

  1. fix codestyle

    johnbotris committed Mar 1, 2022
    Copy the full SHA
    81af4df View commit details
    Browse the repository at this point in the history
  2. update tests

    To ensure that `PromiseStubber.thenReturn` will compile
    johnbotris committed Mar 1, 2022
    Copy the full SHA
    26ddd94 View commit details
    Browse the repository at this point in the history
  3. Add thenReturn to PromiseStubber type declaration

    This allows you to stub an async function with a sequence of
    promises that may either resolve or reject
    johnbotris committed Mar 1, 2022
    Copy the full SHA
    bfb2d99 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2021

  1. 3.16.4

    searls committed Dec 31, 2021
    Copy the full SHA
    a6ee719 View commit details
    Browse the repository at this point in the history
  2. drop node 10 support

    searls committed Dec 31, 2021
    Copy the full SHA
    e321f80 View commit details
    Browse the repository at this point in the history
  3. update quibble

    searls committed Dec 31, 2021
    Copy the full SHA
    4cf6fd1 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2021

  1. 3.16.3

    searls committed Oct 31, 2021
    Copy the full SHA
    a611746 View commit details
    Browse the repository at this point in the history
  2. on preversion, don't run tests locally (there are cases where Chrome …

    …isn't available locally and I need to cut a release)
    searls committed Oct 31, 2021
    Copy the full SHA
    88fadfd View commit details
    Browse the repository at this point in the history
  3. update lockfile

    searls committed Oct 31, 2021
    Copy the full SHA
    a20c92d View commit details
    Browse the repository at this point in the history
  4. Fixes testdouble#474

    searls committed Oct 31, 2021
    Copy the full SHA
    df9ccd3 View commit details
    Browse the repository at this point in the history
Older