Skip to content

Commit

Permalink
updating tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Apr 14, 2016
1 parent ef22a3a commit 3f191b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/typescript/build.bat
Expand Up @@ -7,3 +7,4 @@ call tsc events.ts %PARAMS%
call tsc adapter.ts %PARAMS%
call tsc queries.ts %PARAMS%
call tsc formatting.ts %PARAMS%
call tsc extensions.ts %PARAMS%
3 changes: 3 additions & 0 deletions test/typescript/extensions.ts
Expand Up @@ -27,6 +27,9 @@ var pgpExt = lib<Extensions>({
var dbExt1 = pgp<Extensions>('connection');
var dbExt2 = pgpExt<Extensions>('connection');

dbExt1.findUser(123).then();
dbExt2.findUser(123).then();

dbExt1.task(function (t) {
return t.findUser(123);
});
Expand Down

0 comments on commit 3f191b5

Please sign in to comment.