Better org of tests
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
module.exports = {
|
||||
roots: ['src'],
|
||||
roots: ['tests'],
|
||||
moduleNameMapper: {
|
||||
'src/(.*)': '<rootDir>/src/$1',
|
||||
},
|
||||
preset: 'ts-jest',
|
||||
testEnvironment: 'node',
|
||||
coverageReporters: [
|
||||
|
||||
22
tests/decorators/exclude.spec.ts
Normal file
22
tests/decorators/exclude.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'reflect-metadata';
|
||||
import { Serde } from "src/serde";
|
||||
import { Exclude } from 'src/decorators';
|
||||
|
||||
class ExcludeTestModel extends Serde<ExcludeTestModel> {
|
||||
name: string;
|
||||
date: Date;
|
||||
description: string;
|
||||
@Exclude() frontendField: string;
|
||||
}
|
||||
|
||||
describe('@Exclude() Decorator', () => {
|
||||
it('should remove properties marked during serialize', () => {
|
||||
const testModel = new ExcludeTestModel().deserialize({
|
||||
name: 'test model',
|
||||
description: 'this is a test model',
|
||||
frontendField: 'test field'
|
||||
});
|
||||
const serializedModel = testModel.serialize();
|
||||
expect(serializedModel).toEqual({ name: 'test model', description: 'this is a test model' });
|
||||
});
|
||||
});
|
||||
@@ -1,12 +1,6 @@
|
||||
import { Serde } from 'src/serde';
|
||||
import { Exclude, Pluck } from 'src/decorators';
|
||||
|
||||
class ExcludeTestModel extends Serde<ExcludeTestModel> {
|
||||
name: string;
|
||||
date: Date;
|
||||
description: string;
|
||||
@Exclude() frontendField: string;
|
||||
}
|
||||
import 'reflect-metadata';
|
||||
import { Serde } from "src/serde";
|
||||
import { Pluck } from 'src/decorators';
|
||||
|
||||
class PluckArrayTestModel extends Serde<PluckArrayTestModel> {
|
||||
name: string;
|
||||
@@ -28,21 +22,7 @@ class PluckObjectTestTwoModel extends Serde<PluckObjectTestTwoModel> {
|
||||
@Pluck('id') nestedProperty: { id: number, name: string };
|
||||
}
|
||||
|
||||
describe('Serde', () => {
|
||||
|
||||
describe('@Exclude() decorator tests', () => {
|
||||
it('should remove properties marked during serialize', () => {
|
||||
const testModel = new ExcludeTestModel().deserialize({
|
||||
name: 'test model',
|
||||
description: 'this is a test model',
|
||||
frontendField: 'test field'
|
||||
});
|
||||
const serializedModel = testModel.serialize();
|
||||
expect(serializedModel).toEqual({ name: 'test model', description: 'this is a test model' });
|
||||
});
|
||||
});
|
||||
|
||||
describe('@Pluck() decorator tests', () => {
|
||||
describe('@Pluck() Decorator', () => {
|
||||
it('should pluck \'id\' (property: T[]) from marked property during serialize', () => {
|
||||
const testModel = new PluckArrayTestModel().deserialize({
|
||||
name: 'test model',
|
||||
@@ -89,4 +69,3 @@ describe('Serde', () => {
|
||||
expect(serializedModel).toEqual({ name: 'test model', nestedProperty: 2 });
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -22,6 +22,6 @@
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*", "test/**/*"
|
||||
"src/**/*", "tests/**/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user