Microsoft Developer Advocate for Internet Explorer. Contributing Editor to Smashing Mag.
How can I know developers pain points without working in the same environment as developers. That's why I use a Mac.
Microsoft Developer Advocate for Internet Explorer. Contributing Editor to Smashing Mag.
How can I know developers pain points without working in the same environment as developers. That's why I use a Mac.
describe "Answer Files List [0d0]", -> | |
before -> @visit() | |
beforeEach -> | |
cy | |
.server() | |
.fixture("answer_photos").as("answerFiles") | |
.fixture("answer").as("answer") | |
.then -> | |
@answerModel = App.request "new:answer:entity", @answer.item |
describe "Questions List (Form Builder) [lhw]", -> | |
before -> @visit() | |
beforeEach -> | |
cy | |
.server() | |
.fixture("form_template").as("formTemplate") | |
.fixture("question_headings").as("questionHeadings") | |
.fixture("question_heading").as("questionHeading") |
describe "Questions List", -> | |
beforeEach -> | |
cy | |
.server() | |
context "layout", -> | |
beforeEach -> | |
cy | |
.route(/form_templates\/\d+$/, "fixture:form_template").as("getFormTemplate") | |
.route(/form_templates\/\d+\/question_headings/, "fixture:question_headings").as("getQuestionHeadings") |
describe "Folder File Entity [a7v]", -> | |
before -> | |
@visit() | |
describe "Folder Entity [66f]", -> | |
before -> | |
@visit() | |
cy.server(delay: 600) | |
it "foos [2a7]", -> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test Page</title> | |
</head> | |
<body> | |
<p>This is awesome JS code.</p> | |
<script src="mycode.js"></script> | |
</body> | |
</html> |
describe('Kitchen Sink', function(){ | |
it('cy.should - assert that <title> is correct', function(){ | |
cy | |
.visit('https://example.cypress.io/') | |
.title().should('include', 'Kitchen Sink') | |
}) | |
context('Querying', function(){ | |
beforeEach(function(){ | |
cy.visit('https://example.cypress.io/commands/querying') |
import {observable, autorun} from 'mobx'; | |
import uuid from 'node-uuid'; | |
export class TodoStore { | |
authorStore; | |
transportLayer; | |
@observable todos = []; | |
@observable isLoading = true; | |
constructor(transportLayer, authorStore) { |
import { computed, observable, action } from 'mobx' | |
class Projects { | |
@observable projects = [] | |
constructor (projects) { | |
this.projects = projects | |
} | |
removeProject (projectId) { |