From 9a6967755116f14b6f27fc00b5976b58f0bc6fcd Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Thu, 2 Jun 2011 20:15:43 +0200 Subject: Fix CSS tests on Opera Opera translates name colors to numbers (red -> #ff0000) Other browsers like FF or Chrome translate number to rgb (#ff0000 -> rgb(255, 0, 0) So avoiding colors in tests is probably the easiest solution... --- test/scenario/dslSpec.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/scenario/dslSpec.js') diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js index f0534c2c..4e0042d0 100644 --- a/test/scenario/dslSpec.js +++ b/test/scenario/dslSpec.js @@ -273,15 +273,15 @@ describe("angular.scenario.dsl", function() { }); it('should get css', function() { - doc.append('
'); - $root.dsl.element('#test').css('border'); - expect($root.futureResult).toMatch(/red/); + doc.append(''); + $root.dsl.element('#test').css('height'); + expect($root.futureResult).toMatch(/30px/); }); it('should set css', function() { - doc.append(''); - $root.dsl.element('#test').css('border', '1px solid green'); - expect(doc.find('#test').css('border')).toMatch(/green/); + doc.append(''); + $root.dsl.element('#test').css('height', '20px'); + expect(doc.find('#test').css('height')).toEqual('20px'); }); it('should add all jQuery key/value methods', function() { -- cgit v1.2.3