fix(docs): fix broken docs test after addition of .ts extension to dgeni

regex.
This commit is contained in:
Jeremy Elbourn 2015-05-07 13:08:30 -07:00
parent aaf3edd131
commit 62bf777ef1
1 changed files with 2 additions and 2 deletions

View File

@ -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$/);
});
@ -52,4 +52,4 @@ describe('atScript file reader', function() {
expect(docs[0].docType).toEqual('module');
});
});
});