Browse Source

Update tests

The chat toggle element is now determined by class, not id.
JC Brand 12 years ago
parent
commit
abe85c8b90
2 changed files with 3 additions and 3 deletions
  1. 2 2
      spec/MainSpec.js
  2. 1 1
      tests.html

+ 2 - 2
spec/MainSpec.js

@@ -62,9 +62,9 @@
                 expect(this.rosterview.$el.is(':visible')).toEqual(false);
             }, xmppchat));
 
-            it("can be opened by clicking a DOM element with id 'toggle-online-users'", $.proxy(function () {
+            it("can be opened by clicking a DOM element with class 'toggle-online-users'", $.proxy(function () {
                 spyOn(this, 'toggleControlBox').andCallThrough();
-                $('#toggle-online-users').click();
+                $('.toggle-online-users').click();
                 expect(this.toggleControlBox).toHaveBeenCalled();
             }, xmppchat));
 

+ 1 - 1
tests.html

@@ -24,7 +24,7 @@
     <div id="chatpanel">
         <div id="collective-xmpp-chat-data"></div>
         <div id="toggle-controlbox">
-            <a href="#" class="chat" id="toggle-online-users">
+            <a href="#" class="chat toggle-online-users">
                 <span class="conn-feedback">Click here to chat</span> <strong style="display: none" id="online-count">(0)</strong>
             </a>
         </div>