Skip to content

Commit d4256a7

Browse files
committed
Migrate from xml to xml-js
1 parent d24ec89 commit d4256a7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
},
2828
"devDependencies": {
2929
"@types/jest": "^23.3.1",
30-
"@types/xml": "^1.0.2",
31-
"awesome-typescript-loader": "^5.2.0",
3230
"codeclimate-test-reporter": "^0.5.0",
3331
"coveralls": "^2.13.1",
3432
"jest": "^23.4.2",

src/__tests__/json.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { sampleFeed } from "./setup";
22

33
describe("json 1", () => {
44
it("should generate a valid feed", () => {
5-
let actual = sampleFeed.json1();
5+
const actual = sampleFeed.json1();
66
expect(actual).toMatchSnapshot();
77
});
88
});

0 commit comments

Comments
 (0)