sdf

import { expecter } from "ts-snippet";

const expectSnippet = expecter();

describe("observables", () => {
it("should infer the source's type", () => {
expectSnippet(`
import * as Rx from "rxjs";
const source = Rx.Observable.of(1);
`
).toInfer("source", "Observable<number>");
});
});