Skip to content
Snippets Groups Projects
  1. Sep 19, 2017
    • Christopher Willis-Ford's avatar
      Allow either slash in path passed to Jest · 7809e947
      Christopher Willis-Ford authored
      Jest takes an argument to specify which tests should be run. The
      argument is treated as a regular expression and matched against the
      filenames of potential tests. Unfortunately Jest does not normalize path
      separators to forward slashes when running this comparison, so (for
      example) `tests/unit` doesn't match anything on Windows.
      
      This change replaces the forward slash in Jest arguments with `[\\\\/]`.
      
      Ideally, that should just be `[\\/]` -- escaping the backslash so that
      it survives NPM's JSON parsing -- but unfortunately the Windows version
      of Jest parses its command line arguments differently from other
      platforms. Specifically, the Windows version of Jest processes
      backslashes one extra time. Fortunately having a redundant backslash is
      OK on Mac and Linux, so `[\\\\/]` ends up working on all platforms.
      7809e947
    • Paul Kaplan's avatar
      Merge pull request #678 from LLK/greenkeeper/react-contextmenu-2.7.0 · 068f21cc
      Paul Kaplan authored
      Update react-contextmenu to the latest version :rocket:
      068f21cc
  2. Sep 18, 2017
  3. Sep 14, 2017
  4. Sep 07, 2017
  5. Sep 06, 2017
  6. Sep 05, 2017
  7. Sep 04, 2017
  8. Sep 01, 2017
  9. Aug 31, 2017
  10. Aug 30, 2017
  11. Aug 29, 2017
Loading