Skip to content

Commit

Permalink
Merge pull request #276 from sasjs/fix-deps
Browse files Browse the repository at this point in the history
fix(semantic-ui): added link to semantic.min.css
  • Loading branch information
YuryShkoda authored Jun 23, 2022
2 parents 323b47d + debd380 commit ff0a98a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions example/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
Expand Down
3 changes: 1 addition & 2 deletions src/components/TestSuiteRunner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Button, Icon } from "semantic-ui-react";
import { produce } from "immer";
import TestSuiteComponent from "./TestSuite";
import { TestSuite, Test } from "../types";

import "./TestSuiteRunner.scss";
import ControlBar from "./ControlBar";
import TestSuiteCard from "./TestSuiteCard";
Expand Down Expand Up @@ -276,7 +275,7 @@ const executeTest = async (testSuite: TestSuite, test: Test) => {
if (testSuite?.beforeAll) {
context = await testSuite.beforeAll();
}
const executionResult = await runTest(test, {data: context});
const executionResult = await runTest(test, { data: context });

return executionResult;
};
Expand Down

0 comments on commit ff0a98a

Please sign in to comment.