diff options
author | Joas Schilling <coding@schilljs.com> | 2018-07-31 17:11:46 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-07-31 17:11:46 +0200 |
commit | 3f45ab97da98e1d20f3fdebf639a17c161d0cec7 (patch) | |
tree | c6740c03a41b7f72c0eb787fcddad2535b3d4748 /core/js/tests | |
parent | 3e0668e348a3935b76c915b8aa1e523caf8da921 (diff) | |
download | nextcloud-server-3f45ab97da98e1d20f3fdebf639a17c161d0cec7.tar.gz nextcloud-server-3f45ab97da98e1d20f3fdebf639a17c161d0cec7.zip |
Improve URL detection
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/js/tests')
-rw-r--r-- | core/js/tests/specs/public/commentsSpec.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/js/tests/specs/public/commentsSpec.js b/core/js/tests/specs/public/commentsSpec.js index 57fd7264d25..77b00369cab 100644 --- a/core/js/tests/specs/public/commentsSpec.js +++ b/core/js/tests/specs/public/commentsSpec.js @@ -38,6 +38,7 @@ describe('OCP.Comments tests', function() { {input: 'hi noreply@nextcloud.com', expected: 'hi noreply@nextcloud.com'}, {input: 'hi <noreply@nextcloud.com>', expected: 'hi <noreply@nextcloud.com>'}, {input: 'FirebaseInstanceId.getInstance().deleteInstanceId()', expected: 'FirebaseInstanceId.getInstance().deleteInstanceId()'}, + {input: 'I mean...it', expected: 'I mean...it'}, ]; } |