Skip to content

Commit a1e87f3

Browse files
committed
tests: use this.skip() instead
1 parent 85bbfaf commit a1e87f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/objectFrame.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ describe('Object Frame Rules', function () {
1010
expect(frames).to.eql(jsonObj);
1111
})
1212
it('check the Class Frame Loading',function(){
13+
this.skip()
1314
const dof = new ObjectFrame("mycls");
1415
dof.subjid = "doc:utop";
1516
const frames = [{domain: "mycls", domainValue : "doc:utop", property: "mprop", range: "xsd:string", type: "datatypeProperty", rangeValue: {"@value": "", "@type": "xsd:string"}, label: {"@value": "Prop label", "@type": "xsd:string"}}];
@@ -19,7 +20,7 @@ describe('Object Frame Rules', function () {
1920
const extract = dof.extract();
2021
const jsonObj= {"@id": "doc:utop", "@type": "mycls", mprop: [{ "@type": "xsd:string", "@value": "helloworld"}]};
2122
expect(extract).to.eql(jsonObj);
22-
}).skip()
23+
})
2324
})
2425

2526

0 commit comments

Comments
 (0)