$(document).ready(function(){ console.log("Ready!")
for(var i = 1; i<=100; i++){
if(i % 3 === 0 && i % 5 === 0){
| describe('GIVEN I am not an admin user', function () { | |
| describe('WHEN Navigate to the page /admin ', function () { | |
| it('THEN I see a warning box stating: "You do not have access to this page" ', () => { | |
| Page.navigate('/admin') | |
| expect(Page.elementContains('#error-message', 'You do not have access to this page')).toBeTrue(); | |
| }); | |
| }); | |
| }); |
| stripe.subscriptions.create({ | |
| customer: "your-customers-id", | |
| plan: "monthly-membership", | |
| application_fee_percent: 5 | |
| }, { | |
| stripe_account: req.body.account | |
| }) |
| stripe.customers.create({ | |
| description: "A new member, called Linda!", | |
| source: "tok_visa" | |
| },{ | |
| stripe_account: req.body.account | |
| }); |
| stripe.plans.create( | |
| { | |
| amount: 1000, | |
| name: "A monthly membership", | |
| id: "monthly-membership", | |
| interval: "month", | |
| currency: "gbp" | |
| }, | |
| { |
| stripe.accounts.create({ | |
| email: "bob@bobsgym.com", | |
| country: "gb", | |
| type: "custom" | |
| }) |
$(document).ready(function(){ console.log("Ready!")
for(var i = 1; i<=100; i++){
if(i % 3 === 0 && i % 5 === 0){
box-sizing: border-box;
| /* | |
| fa-bug | |
| fa-balance-scale | |
| fa-list-ul | |
| fa-plus | |
| fa-times-circle | |
| fa-bars | |
| fa-book | |
| fa-1 |
| var getObjectProperties = function(prop){ | |
| console.log('arturs stuff', object[prop]); | |
| }; | |
| var object = { | |
| "test": "something", | |
| "somethingelse": "artur" | |
| } | |
| getObjectProperties("test"); |