Skip to content

Commit

Permalink
Removed only
Browse files Browse the repository at this point in the history
  • Loading branch information
papafe committed Jun 22, 2023
1 parent a49efcc commit 85eceda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/tests/src/tests/objects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ describe("Realm.Object", () => {
}).throws("Property 'foo' does not exist on 'AllTypesObject' objects");
});

it.only("returns entries correctly", function (this: Mocha.Context & RealmContext) {
it("returns entries correctly", function (this: Mocha.Context & RealmContext) {
const obj = this.realm.write(() => {
return this.realm.create<IPrimaryString>(PrimaryStringSchema.name, {
pk: "one",
Expand All @@ -982,7 +982,7 @@ describe("Realm.Object", () => {
]);
});

it.only("returns keys correctly", function (this: Mocha.Context & RealmContext) {
it("returns keys correctly", function (this: Mocha.Context & RealmContext) {
const obj = this.realm.write(() => {
return this.realm.create<IPrimaryString>(PrimaryStringSchema.name, {
pk: "one",
Expand Down

0 comments on commit 85eceda

Please sign in to comment.