dotfiles/vscode/.vscode/extensions/randomfractalsinc.vscode-data-preview-2.3.0/node_modules/detectie/test/test.js
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

14 lines
353 B
JavaScript

var assert = chai.assert,
expect = chai.expect,
should = chai.should();
describe('detectie()', function() {
it('should be false on non IE browsers', function() {
assert.equal(detectie(), false);
})
it('should be true on IE browsers', function() {
assert.include(detectie(), 'IE', 'should be true on IE');
})
})