| 1828 | |
| 1829 | it('returns null for null, undefined, and unset boolean values', () => { |
| 1830 | @Table({ logging: true } as TableOptions) |
| 1831 | class Setting extends Model { |
| 1832 | @Column |
| 1833 | settingKey: string; |
| 1834 | |
| 1835 | @AllowNull |
| 1836 | @Column |
| 1837 | boolValue: boolean; |
| 1838 | |
| 1839 | @AllowNull |
| 1840 | @Column |
| 1841 | boolValue2: boolean; |
| 1842 | |
| 1843 | @AllowNull |
| 1844 | @Column |
| 1845 | boolValue3: boolean; |
| 1846 | } |
| 1847 | |
| 1848 | sequelize.addModels([Setting]); |
| 1849 |
nothing calls this directly
no test coverage detected
searching dependent graphs…