Skip to content

Commit

Permalink
Add boolean to author schema
Browse files Browse the repository at this point in the history
  • Loading branch information
backspace committed Oct 9, 2021
1 parent c8e6a6f commit 1e896d9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/sql-source-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ QUnit.module('SQLSource', function (hooks) {
attributes: {
firstName: 'Paul',
lastName: 'Chavard',
admin: true,
},
};
const article1 = {
Expand Down Expand Up @@ -43,6 +44,7 @@ QUnit.module('SQLSource', function (hooks) {
attributes: {
firstName: { type: 'string' },
lastName: { type: 'string' },
admin: { type: 'boolean' },
},
relationships: {
articles: {
Expand Down

0 comments on commit 1e896d9

Please sign in to comment.