Requerimientos
Entidades
El nombre de las tablas debe estar en plural, por ejemplo: Users, Currencies, Companies, ...
✅
Company Columna | Tipo | Características |
---|
El nombre de las tablas debe estar en plural, por ejemplo: Users, Currencies, Companies, ...
Columna | Tipo | Características |
---|
{ | |
"Id": 210, | |
"CreatedAt": "2020-11-01T15:18:39.271Z", | |
"UpdatedAt": "2021-01-28T18:39:29.314Z", | |
"DeletedAt": null, | |
"IsActive": true, | |
"LocationId": 15, | |
"Location": { | |
"Id": 15, | |
"CreatedAt": "2020-06-23T10:38:36.549Z", |
class LoginPageObject { | |
getEmailInput() { | |
return cy.get("#email"); | |
} | |
getPasswordInput() { | |
return cy.get("#password"); | |
} | |
} |
/// <reference types="cypress" /> | |
import LoginPageObject from "./page/LoginPageObject"; | |
describe('Login Page', () => { | |
const invalidEmail = "invalid@email"; | |
const validEmail = "fake@email.com"; | |
const loginPage = new LoginPageObject(); | |
beforeEach(() => { | |
cy.visit("https://memod.com"); |
gsettings set org.gnome.shell.extensions.desktop-icons show-home false
gsettings set org.gnome.shell.extensions.desktop-icons show-trash false
{"lastUpload":"2020-05-27T16:49:55.692Z","extensionVersion":"v3.4.3"} |
Bienvenido a la Agenda
{ | |
"globals": { | |
"alwaysShowTabs": true, | |
"defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"initialCols": 120, | |
"initialRows": 30, | |
"keybindings": [ | |
{ | |
"command": "closeTab", | |
"keys": ["ctrl+w"] |
const timeoutList = [5000, 2500, 4500]; | |
async function initInterval() { | |
for(const timeout of timeoutList) { | |
await runTimeout(timeout); | |
} | |
} | |
function runTimeout(timeout) { | |
return new Promise(resolve => { |
CREATE TABLE job_grades ( | |
grade CHAR(1), | |
lowest_sal NUMBER(8,2) NOT NULL, | |
highest_sal NUMBER(8,2) NOT NULL | |
); | |
ALTER TABLE job_grades | |
ADD CONSTRAINT jobgrades_grade_pk PRIMARY KEY (grade); | |
INSERT INTO job_grades VALUES ('A', 1000, 2999); |