-
Notifications
You must be signed in to change notification settings - Fork 40
Results of weekly scheduled smoke test #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
bug
Something isn't working
Comments
Detected 5 ESLint reports and/or crashes. Rules:
Click to expandRule: prefer-to-have-value
25 | act(() => {
26 | const [storedValue, setValue] = defaultHook('item', { value: 'value' })();
> 27 | expect(storedValue.value).toEqual('value');
28 |
29 | setValue({ value: 'newValue' });
30 |
Rule: prefer-in-document
20 | )
21 |
> 22 | expect(mounted).toBe.truthy
23 | })
24 |
25 | it('renders correctly', () => {
Rule: prefer-in-document
29 | )
30 |
> 31 | expect(mounted).toBe.truthy
32 | })
33 |
34 | it('renders correctly', () => {
Rule: prefer-in-document
20 | )
21 |
> 22 | expect(mounted).toBe.truthy
23 | })
24 |
25 | it('renders correctly', () => {
Rule: prefer-in-document
340 | await Submit.submitDraft()
341 | } catch (e) {
> 342 | expect().toBe(true)
343 | } finally {
344 | expect(Submit.error).toBe(undefined)
345 | }
|
Detected 5 ESLint reports and/or crashes. Rules:
Click to expandRule: prefer-to-have-value
88 | const { val: rv } = vuelve(composable)()
89 |
> 90 | expect(rv.value).toBe('hello')
91 | })
92 | })
93 |
Rule: prefer-to-have-value
42 | MockData.API_PLAN_PRICE_PREMIUM_MONTHLY,
43 | ];
> 44 | expect( ( iter.next as PlanPriceApiDataIterator )( planPriceApiData ).value ).toEqual( {
45 | type: 'FETCH_AND_PARSE',
46 | resource: `https://public-api.wordpress.com/wpcom/v2/plans/details?locale=${ MOCK_LOCALE }`,
47 | options: {
Rule: prefer-in-document
29 | const option1 = getByText('Option 1')
30 |
> 31 | expect(option1).toBeDefined
32 | expect(getByText('Option 2')).toBeDefined
33 |
34 | fireEvent.click(option1)
Rule: prefer-to-have-value
7 | it('should generate path from segments', () => {
8 | const res = makePath('repositories', 'create')();
> 9 | expect(res.value).toEqual('/repositories/create');
10 | });
11 |
12 | it('should generate path with simple params', () => {
Rule: prefer-in-document
19 | xit('render time should be of type number', () => {
20 | //the type of data being rendered should be a number
> 21 | expect().toBe();
22 | });
23 | xit('should be of type string', () => {
24 | //that dom element should render a string
|
Detected 7 ESLint reports and/or crashes. Rules:
Click to expandRule: prefer-in-document
19 | xit('render time should be of type number', () => {
20 | //the type of data being rendered should be a number
> 21 | expect().toBe();
22 | });
23 | xit('should be of type string', () => {
24 | //that dom element should render a string
Rule: prefer-in-document
340 | await Submit.submitDraft()
341 | } catch (e) {
> 342 | expect().toBe(true)
343 | } finally {
344 | expect(Submit.error).toBe(undefined)
345 | }
Rule: prefer-to-have-value
42 | MockData.API_PLAN_PRICE_PREMIUM_MONTHLY,
43 | ];
> 44 | expect( ( iter.next as PlanPriceApiDataIterator )( planPriceApiData ).value ).toEqual( {
45 | type: 'FETCH_AND_PARSE',
46 | resource: `https://public-api.wordpress.com/wpcom/v2/plans/details?locale=${ MOCK_LOCALE }`,
47 | options: {
Rule: prefer-to-have-value
7 | it('should generate path from segments', () => {
8 | const res = makePath('repositories', 'create')();
> 9 | expect(res.value).toEqual('/repositories/create');
10 | });
11 |
12 | it('should generate path with simple params', () => {
Rule: prefer-in-document
79 |
80 | // Check for correct return type of tuple from resourceIdList
> 81 | expect<IsSameT<typeof idList, ["prop1", "prop2", "prop3"]>>().toBe(true);
82 | expect<IsSameT<typeof idList, string[]>>().toBe(false);
83 | expect<IsSameT<typeof idList, [string, string, string]>>().toBe(false);
84 | });
Rule: prefer-to-have-value
88 | const { val: rv } = vuelve(composable)()
89 |
> 90 | expect(rv.value).toBe('hello')
91 | })
92 | })
93 |
Rule: prefer-in-document
29 | const option1 = getByText('Option 1')
30 |
> 31 | expect(option1).toBeDefined
32 | expect(getByText('Option 2')).toBeDefined
33 |
34 | fireEvent.click(option1)
|
This was referenced Dec 26, 2021
Detected 6 ESLint reports and/or crashes. Rules:
Click to expandRule: prefer-in-document
79 |
80 | // Check for correct return type of tuple from resourceIdList
> 81 | expect<IsSameT<typeof idList, ["prop1", "prop2", "prop3"]>>().toBe(true);
82 | expect<IsSameT<typeof idList, string[]>>().toBe(false);
83 | expect<IsSameT<typeof idList, [string, string, string]>>().toBe(false);
84 | });
Rule: prefer-in-document
340 | await Submit.submitDraft()
341 | } catch (e) {
> 342 | expect().toBe(true)
343 | } finally {
344 | expect(Submit.error).toBe(undefined)
345 | }
Rule: prefer-to-have-value
25 | act(() => {
26 | const [storedValue, setValue] = defaultHook('item', { value: 'value' })();
> 27 | expect(storedValue.value).toEqual('value');
28 |
29 | setValue({ value: 'newValue' });
30 |
Rule: prefer-in-document
29 | const option1 = getByText('Option 1')
30 |
> 31 | expect(option1).toBeDefined
32 | expect(getByText('Option 2')).toBeDefined
33 |
34 | fireEvent.click(option1)
Rule: prefer-to-have-value
88 | const { val: rv } = vuelve(composable)()
89 |
> 90 | expect(rv.value).toBe('hello')
91 | })
92 | })
93 |
Rule: prefer-to-have-value
7 | it('should generate path from segments', () => {
8 | const res = makePath('repositories', 'create')();
> 9 | expect(res.value).toEqual('/repositories/create');
10 | });
11 |
12 | it('should generate path with simple params', () => {
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Detected 9 ESLint reports and/or crashes.
Scanned 7632 repositories.
Rules:
prefer-in-document
prefer-to-have-value
Click to expand
Rule: prefer-in-document
Cannot read property 'type' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/CSCfi/etsin-finder/etsin_finder/frontend/__tests__/stores/view/qvain.apiv2.test.js:342
CSCfi/etsin-finder/etsin_finder/frontend/__tests__/stores/view/qvain.apiv2.test.js
Rule: prefer-to-have-value
Cannot read property 'name' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/patrick-narciso/transactions-manager/src/__tests__/hooks/useLocalStorage.spec.js:27
patrick-narciso/transactions-manager/src/__tests__/hooks/useLocalStorage.spec.js
Rule: prefer-in-document
undefined is not iterable (cannot read property Symbol(Symbol.iterator)) Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/skyverge/kodiak-ui/packages/autocomplete/src/__tests__/Autocomplete.spec.tsx:31
skyverge/kodiak-ui/packages/autocomplete/src/__tests__/Autocomplete.spec.tsx
Rule: prefer-in-document
Cannot read property 'length' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/instacart/Snacks/src/components/Forms/__tests__/DateField.spec.js:22
instacart/Snacks/src/components/Forms/__tests__/DateField.spec.js
Rule: prefer-in-document
Cannot read property 'length' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/instacart/Snacks/src/components/Forms/__tests__/MaskedTextField.spec.js:31
instacart/Snacks/src/components/Forms/__tests__/MaskedTextField.spec.js
Rule: prefer-in-document
Cannot read property 'length' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/instacart/Snacks/src/components/Forms/__tests__/PhoneNumberField.spec.js:22
instacart/Snacks/src/components/Forms/__tests__/PhoneNumberField.spec.js
Rule: prefer-in-document
Cannot read property 'type' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/unboundedsystems/adapt/cloud/test/resourceid.spec.tsx:81
unboundedsystems/adapt/cloud/test/resourceid.spec.tsx
Rule: prefer-to-have-value
Cannot read property 'name' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/dashersw/vuelve/test/vuelve.test.js:90
dashersw/vuelve/test/vuelve.test.js
Rule: prefer-in-document
Cannot read property 'type' of undefined Occurred while linting /github/workspace/node_modules/eslint-remote-tester/.cache-eslint-remote-tester/open-source-labs/Recoilize/src/app/components/Metrics/__tests__/Visualizer.unit.test.js:21
open-source-labs/Recoilize/src/app/components/Metrics/__tests__/Visualizer.unit.test.js
The text was updated successfully, but these errors were encountered: