mirror of
https://github.com/appium/appium.git
synced 2026-02-13 05:19:47 -06:00
added missing semicolons
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
// more docs on writing tests with mocha can be found here:
|
||||
// http://visionmedia.github.com/mocha/
|
||||
|
||||
var assert = require("assert")
|
||||
var assert = require("assert");
|
||||
describe('Array', function(){
|
||||
describe('#indexOf()', function(){
|
||||
it('should return -1 when the value is not present', function(){
|
||||
assert.equal(-1, [1,2,3].indexOf(5));
|
||||
assert.equal(-1, [1,2,3].indexOf(0));
|
||||
})
|
||||
})
|
||||
})
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user