Giter VIP home page Giter VIP logo

pasv-ui's Introduction

Content

  • PASV-UI Project Installation From The Scratch
  • PASV-UI Project Installation Instruction For Current Collaborators

PASV-UI Project Installation From The Scratch

1 Go to https://github.com/ and create a new repository called PASV-UI.

2 Go to Settings and add collaborators.

3 Go to Clone or download tab. Clone the project link.

4 Go to WebStorm dashboard and click Get from Version Control.

5 Paste the copied link into URL text field. Click Clone.

6 Create .gitignore file with the following text:

.idea
.idea/*
node_modules/

7 Commit and push the .gitignore file to the created repository.

8 Type the following command in the terminal to install WebDriverIO :

npm i --save-dev @wdio/cli

9 Type the following command in the terminal to generate a configuration file to store WebdriverIO settings:

./node_modules/.bin/wdio config -y

10 Open package.json file and type the following test script:

"scripts": {
    "test": "./node_modules/.bin/wdio wdio.conf.js"
  },

11 Type the following command in the terminal to install Chai:

npm install chai

12 Type the following command in the terminal to install Babel:

npm install --save-dev @babel/core @babel/cli @babel/preset-env @babel/register

13 Setup babel.config.js file properly.

module.exports = {
    presets: [
        ['@babel/preset-env', {
            targets: {
                node: 12
            }
        }]
    ]
}

14 Edit wdio.conf.js file by adding internal require to register Babel (lines #131-135):

    mochaOpts: {
        ui: 'bdd',
        timeout: 60000,
        compilers: ['js:@babel/register']
    },

15 Run npm install command in the terminal.

PASV-UI Project Installation Instruction For Current Collaborators

1 Go to https://github.com/KatAvdeeva/PASV-UI.

2 Clone the project link.

3 Go to WebStorm dashboard. Click Get from Version Control.

4 Place the copied link into URL text field. Click Clone.

5 Click VCS - Git - Fetch. If Fetch command does not work, please click Pull button.

6 Type the following command in the terminal:

npm install

Useful Resources

pasv-ui's People

Contributors

katavdeeva avatar kusevych avatar trivme avatar annastrik avatar serg-troy avatar liudmilape avatar askoropadskaya avatar rvorobey avatar vova-kuk avatar matsakova avatar olgashchekina avatar sshaiakhmedov avatar fiore24 avatar alenaburava avatar nikolaev-a avatar irinyx avatar stozhkairyna avatar ludatkach avatar saadatt avatar irina08 avatar andreikalenchuk avatar vladyslavva avatar kassanovaamina avatar omiradil avatar dmitriy-kovalenko1 avatar mastakailo avatar yelenadipon avatar perm59 avatar bogutski avatar sharygin-aleksei avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.