From b0cffbee88ee12b1ac010ecc044037e2be805fb2 Mon Sep 17 00:00:00 2001 From: BuonOmo Date: Tue, 30 Jan 2018 16:26:25 +0100 Subject: [PATCH] add first test --- test/browser/notification.html | 26 ++++++++++++++++++++++++++ test/browser/notification.spec.js | 7 +++++++ 2 files changed, 33 insertions(+) create mode 100644 test/browser/notification.html create mode 100644 test/browser/notification.spec.js diff --git a/test/browser/notification.html b/test/browser/notification.html new file mode 100644 index 0000000000..fbee672109 --- /dev/null +++ b/test/browser/notification.html @@ -0,0 +1,26 @@ + + + Mocha + + + + + + + + + +
+ + + diff --git a/test/browser/notification.spec.js b/test/browser/notification.spec.js new file mode 100644 index 0000000000..7ab61a2a62 --- /dev/null +++ b/test/browser/notification.spec.js @@ -0,0 +1,7 @@ +'use strict'; + +describe('Notification', function () { + it('should ask for notification, or show a notification', function () { + assert(true); + }); +});