Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from shubhankarsharma00/new-branch
Browse files Browse the repository at this point in the history
changed some ui
  • Loading branch information
shubhankarsharma00 authored Jun 29, 2020
2 parents 3035570 + 653b166 commit 7bcce59
Show file tree
Hide file tree
Showing 117 changed files with 17,833 additions and 6,739 deletions.
26 changes: 0 additions & 26 deletions .circleci/config.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
}
};
2 changes: 1 addition & 1 deletion css/simulator.css

Large diffs are not rendered by default.

845 changes: 579 additions & 266 deletions index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
preset: "jest-puppeteer",
setupFiles: ["./jest.setup.js"],
globals: {
URL: "http://localhost:8080"
},
Expand Down
21 changes: 21 additions & 0 deletions jest.setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* @jest-environment jsdom
*/

global.window = window
window.Jquery = require('jquery');
window.$ = require('jquery');
global.jQuery = require('jquery');

window.restrictedElements = []
window.userSignedIn = true;
window.embed = false;

import Array from './src/arrayHelpers'
window["Array"] = Array
require('jquery-ui-bundle');

const fs = require('fs');
const path = require('path');
const html = fs.readFileSync(path.resolve(__dirname, './index.html'), 'utf8');
document.documentElement.innerHTML = html.toString();
Loading

0 comments on commit 7bcce59

Please sign in to comment.