func testCreateEmptyRecord() { | |
let exp = self.expectation(description: "waiting for object created") | |
try! self.storage?.create(PFARecord.self, completion: { (storedObject) in | |
print("😚🤠: \(storedObject)") | |
exp.fulfill() | |
}) | |
self.waitForExpectations(timeout: 2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment