The Wayback Machine - https://web.archive.org/web/20200715103505/https://github.com/topics/jest-tests
Skip to content
#

jest-tests

Here are 498 public repositories matching this topic...

jsamr
jsamr commented Jan 27, 2020

Although the two source streams and the result stream have all a length of 5, an exception is thrown.

Reproduction:

import { cold, hot } from 'jest-marbles'
import { buffer, mergeAll } from 'rxjs/operators'

describe('test', () => {
  it('should not fail', () => {
    const source1 = cold('AB--|')
    const source2 = hot('^-A-|')
    expect(source1.pipe(buffer(source2), mergeAl
ld75
ld75 commented Jan 1, 2020

with a jest.config.js containing
module.exports = {
browser: false,
clearMocks: false,
globals: {
"pageContextRequestContextPath":"./"
},
runner: "jest-electron/runner",
testEnvironment: "jest-electron/environment",
verbose: true,
};

When doing console.log("test"); in my tests it doesn't print anything in the console.
When I switch to runner: "jest-runner",
and

GSDTN
GSDTN commented Feb 14, 2020

OpenAPI version
3

Describe the bug
I have a spec that works if I pull it down, write it to a file and then pass that file path into chaiResponseValidator(specPath).
After pulling down 0.7.0 - I was expecting that the feature in 0.6.0 to just do an HTTP get and pass the data portion of the response in would work.
However, it appears that the code is inspecting the input and looking

Improve this page

Add a description, image, and links to the jest-tests topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jest-tests topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.