We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 863abee commit f7bc93eCopy full SHA for f7bc93e
test/functional/custom-transform.spec.ts
@@ -6,12 +6,12 @@ import * as moment from "moment";
6
7
describe("custom transformation decorator", () => {
8
9
- it("@Expose decorator with 'name' option should work with @Transform decorator", () => {
+ it("@Expose decorator with \"name\" option should work with @Transform decorator", () => {
10
defaultMetadataStorage.clear();
11
12
class User {
13
14
- @Expose({name: 'user_name'})
+ @Expose({name: "user_name"})
15
@Transform(value => value.toUpperCase())
16
name: string;
17
}
0 commit comments