We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TypeScript errors are not being reported by the tests, so all of the tests within the type() tests are ineffectual.
type()
RxJS version: current master
Code to reproduce:
Adding an incorrectly typed constant to debounce-spec.ts, say, like this:
debounce-spec.ts
import { expect } from 'chai'; import * as Rx from '../../src/Rx'; import marbleTestingSignature = require('../helpers/marble-testing'); // tslint:disable-line:no-require-imports const n: number = "1"; // Obviously an error
should effect a TypeScript error, but it does not.
Expected behavior:
An error should be reported and the tests should fail.
Actual behavior:
No error is reported
Additional information: -
The text was updated successfully, but these errors were encountered:
I accidently close issue, it's #3020. basically we don't run compiler to specs yet.
Sorry, something went wrong.
I see. No worries.
Closing in favour of #3411.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
TypeScript errors are not being reported by the tests, so all of the tests within the
type()
tests are ineffectual.RxJS version: current master
Code to reproduce:
Adding an incorrectly typed constant to
debounce-spec.ts
, say, like this:should effect a TypeScript error, but it does not.
Expected behavior:
An error should be reported and the tests should fail.
Actual behavior:
No error is reported
Additional information: -
The text was updated successfully, but these errors were encountered: