Skip to content

Commit

Permalink
fix(docs): fix broken docs test after addition of .ts extension to dgeni
Browse files Browse the repository at this point in the history
regex.
  • Loading branch information
jelbourn committed May 7, 2015
1 parent aaf3edd commit 62bf777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dgeni-package/readers/atScript.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('atScript file reader', function() {


it('should provide a default pattern', function() {
expect(reader.defaultPattern).toEqual(/\.js|\.es6$/);
expect(reader.defaultPattern).toEqual(/\.js|\.es6|\.ts$/);
});


Expand All @@ -52,4 +52,4 @@ describe('atScript file reader', function() {
expect(docs[0].docType).toEqual('module');
});

});
});

0 comments on commit 62bf777

Please sign in to comment.