Skip to content

Commit 3518c00

Browse files
committed
jest config
1 parent db77f66 commit 3518c00

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
"roots": [
3-
"<rootDir>/src"
3+
"<rootDir>/"
44
],
55
"transform": {
66
"^.+\\.tsx?$": "ts-jest"

main.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ describe("rxjs-marbles", () => {
55

66
it("should support marble tests", marbles(m => {
77

8-
const source = m.hot("--^-a-b-c-|");
9-
const subs = "^-------!";
10-
const expected = "--b-c-d-|";
8+
const source = m.hot("--^-a-b-c-|");
9+
const subs = "^-------!";
10+
const expected = "--b-c-d-|";
1111

1212
const destination = source.pipe(
1313
map(value => String.fromCharCode(value.charCodeAt(0) + 1))

0 commit comments

Comments
 (0)